We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d31e318 commit b37127eCopy full SHA for b37127e
pants-plugins/uses_services/scripts/is_redis_running.py
@@ -27,7 +27,8 @@ def _is_redis_running(coord_url: str) -> bool:
27
# late import so that __file__ can be imported in the pants plugin without these imports
28
from tooz import ToozError, coordination
29
30
- coordinator = coordination.get_coordinator(coord_url)
+ member_id = "pants-uses_services-redis"
31
+ coordinator = coordination.get_coordinator(coord_url, member_id)
32
try:
33
coordinator.start(start_heart=False)
34
except ToozError:
0 commit comments