예제 #1
0
 def block_until_up(self, attempts=10):
     return_when_web_service_up(
         health_check_url=self.base_url,
         attempts=attempts)
 def block_until_up(self, attempts=5):
     url = '/'.join((self.base_url, 'api/system/ping'))
     return_when_web_service_up(
         health_check_url=url,
         attempts=attempts)