fd368a706b
This avoids having Zookeeper or memcached running, which might not be the case. Change-Id: Ib66eb8348aece447ee2c8de084c4ac807b552907
16 lines
274 B
Python
16 lines
274 B
Python
import time
|
|
|
|
from tooz import coordination
|
|
|
|
ALIVE_TIME = 5
|
|
|
|
coordinator = coordination.get_coordinator('zake://', b'host-1')
|
|
coordinator.start()
|
|
|
|
start = time.time()
|
|
while time.time() - start < ALIVE_TIME:
|
|
coordinator.heartbeat()
|
|
time.sleep(0.1)
|
|
|
|
coordinator.stop()
|