本文整理汇总了Python中docker.APIClient.ping方法的典型用法代码示例。如果您正苦于以下问题:Python APIClient.ping方法的具体用法?Python APIClient.ping怎么用?Python APIClient.ping使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类docker.APIClient
的用法示例。
在下文中一共展示了APIClient.ping方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: check_daemon
# 需要导入模块: from docker import APIClient [as 别名]
# 或者: from docker.APIClient import ping [as 别名]
def check_daemon(worker_api, timeout=5):
""" Check if the daemon is active
Only wait for timeout seconds.
:param worker_api: Docker daemon url
:param timeout: Time to wait for the response
:return: True for active, False for inactive
"""
if not worker_api or not worker_api.startswith("tcp://"):
logger.warning("invalid workder_api={}".format(worker_api))
return False
segs = worker_api.split(":")
if len(segs) != 3:
logger.error("Invalid workder api = ", worker_api)
return False
try:
client = Client(base_url=worker_api, version="auto", timeout=timeout)
ping_result = client.ping()
logger.debug("ping_result={}".format(ping_result))
return ping_result == 'OK' or ping_result is True
except Exception as e:
logger.error("Exception in check_daemon {}".format(e))
return False