Increase the timeout on the atomic lock
Some nodes were still performing the action twice when falling outside of the 30s window
This commit is contained in:
parent
427070b453
commit
bc670611ef
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
ETCD_MAX_WATCH_TIMEOUT = 30
|
ETCD_MAX_WATCH_TIMEOUT = 30
|
||||||
ETCD_ATOMIC_OP_TIMEOUT = 30
|
ETCD_ATOMIC_OP_TIMEOUT = 120
|
||||||
RETRY_IMMEDIATELY_TIMEOUT = 0
|
RETRY_IMMEDIATELY_TIMEOUT = 0
|
||||||
NO_WORKER_AVAILABLE_TIMEOUT = 10
|
NO_WORKER_AVAILABLE_TIMEOUT = 10
|
||||||
DEFAULT_EPHEMERAL_API_TIMEOUT = 20
|
DEFAULT_EPHEMERAL_API_TIMEOUT = 20
|
||||||
|
|
Reference in a new issue