diff --git a/mistral/config.py b/mistral/config.py index ba4344539..44aa25a83 100644 --- a/mistral/config.py +++ b/mistral/config.py @@ -579,6 +579,8 @@ coordination_opts = [ cfg.FloatOpt( 'heartbeat_interval', default=5.0, + deprecated_for_removal=True, + deprecated_reason='This option has been unused and has had no effect', help=_('Number of seconds between heartbeats for coordination.') ) ] diff --git a/releasenotes/notes/deprecate-coordination-heartbeat_interval-c01502549feee32c.yaml b/releasenotes/notes/deprecate-coordination-heartbeat_interval-c01502549feee32c.yaml new file mode 100644 index 000000000..16b5ab2a1 --- /dev/null +++ b/releasenotes/notes/deprecate-coordination-heartbeat_interval-c01502549feee32c.yaml @@ -0,0 +1,5 @@ +--- +deprecations: + - | + The ``[coordination] heartbeat_interval`` option has been deprecated. + This option has been unused by any logic and has had no effect.