coordination.py (aodh-14.0.0) | : | coordination.py (aodh-15.0.0) | ||
---|---|---|---|---|
skipping to change at line 39 | skipping to change at line 39 | |||
cfg.StrOpt('backend_url', | cfg.StrOpt('backend_url', | |||
help='The backend URL to use for distributed coordination. If ' | help='The backend URL to use for distributed coordination. If ' | |||
'left empty, alarm evaluation won\'t do workload ' | 'left empty, alarm evaluation won\'t do workload ' | |||
'partitioning and will only function correctly if a ' | 'partitioning and will only function correctly if a ' | |||
'single instance of the service is running.'), | 'single instance of the service is running.'), | |||
cfg.FloatOpt('heartbeat_interval', | cfg.FloatOpt('heartbeat_interval', | |||
default=1.0, | default=1.0, | |||
deprecated_name='heartbeat', | deprecated_name='heartbeat', | |||
help='Number of seconds between heartbeats for distributed ' | help='Number of seconds between heartbeats for distributed ' | |||
'coordination.'), | 'coordination.'), | |||
cfg.FloatOpt('check_watchers', | ||||
default=10.0, | ||||
deprecated_for_removal=True, | ||||
deprecated_reason='This parameter is no longer used.', | ||||
help='Number of seconds between checks to see if group ' | ||||
'membership has changed'), | ||||
cfg.IntOpt('retry_backoff', | cfg.IntOpt('retry_backoff', | |||
default=1, | default=1, | |||
help='Retry backoff factor when retrying to connect with' | help='Retry backoff factor when retrying to connect with' | |||
' coordination backend'), | ' coordination backend'), | |||
cfg.IntOpt('max_retry_interval', | cfg.IntOpt('max_retry_interval', | |||
default=30, | default=30, | |||
help='Maximum number of seconds between retry to join ' | help='Maximum number of seconds between retry to join ' | |||
'partitioning group') | 'partitioning group') | |||
] | ] | |||
End of changes. 1 change blocks. | ||||
6 lines changed or deleted | 0 lines changed or added |