You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enable the idiscovery library to initially check that a connection to the discovery service is possible.
This can be enabled in the config by setting discovery.InitialConnectPeriod to a non-zero value.
This check is only executed, when either discovery.static or discovery.dynamic is enabled.
If the process fails to connect, there are two possible actions that are taken (configurable):
Fatal: Exit process with error
Ignore: Ignore, and keep the periodic queries running
The text was updated successfully, but these errors were encountered:
Enables the `idiscovery` library to initially check that topologies can be successfully fetched from the discovery service.
On start up, the discovery service is queried every second until a valid response is received or the `InitialPeriod` has passed. If that period has passed, and no valid topology has been received,
the process will take the configured fail action:
* `Fatal`: Exit process with error
* `Ignore`: Ignore, and keep the periodic queries running
fixes#2431
Enable the
idiscovery
library to initially check that a connection to the discovery service is possible.This can be enabled in the config by setting
discovery.InitialConnectPeriod
to a non-zero value.This check is only executed, when either
discovery.static
ordiscovery.dynamic
is enabled.If the process fails to connect, there are two possible actions that are taken (configurable):
Fatal
: Exit process with errorIgnore
: Ignore, and keep the periodic queries runningThe text was updated successfully, but these errors were encountered: