Comment 1 for bug 1593219

Revision history for this message
Brendan Donegan (brendan-donegan) wrote :

As per conversation on IRC, we should be able to address this be reinstating the test_rack_connected test (it's currently skipped) and modifying it to check the status of the rackd service on the rack controller. Example code:

>>> js = json.loads(rack_controllers_output)
>>> for service in js[0]['service_set']:
... if service.get('name','') == 'rackd':
... print(service['status'])