Home | History | Annotate | Download | only in site_utils

Lines Matching refs:PRIMARY

38     """Post a warning if Autotest instance has no other primary server with
46 status=server_models.Server.STATUS.PRIMARY).exclude(
81 Status : primary
90 server2 | primary | drone | 2014-11-25 12:00:00 | | Drone
92 scheduler : server1(backup), server3(primary),
94 drone : server2(primary),
153 """Confirm server with given hostname is ready to be primary of given role.
223 """Get a list of drones in status primary.
225 @return: A list of drones in status primary.
228 status=server_models.Server.STATUS.PRIMARY)
277 """Get a list of shards in status primary.
279 @return: A list of shards in status primary.
282 status=server_models.Server.STATUS.PRIMARY)
287 """Confirm a given server has the given role, and its status is primary.
292 not in primary status.
298 servers = get_servers(role=role, status=server_models.Server.STATUS.PRIMARY)
303 'status primary.' % (hostname, role))