This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""etcd3 Leader election.""" | |
import sys | |
import time | |
from threading import Event | |
import etcd3 | |
LEADER_KEY = '/leader' | |
LEASE_TTL = 5 | |
SLEEP = 1 |
OlderNewer