Loading ccserver/clients/host.py +3 −0 Original line number Diff line number Diff line Loading @@ -7,5 +7,8 @@ class HostClient(Client): ROLE = 'host' def execute(self, command): return self.conn.call('execute_command', command) Client.register_client_class(HostClient) ccserver/clients/hv.py +3 −0 Original line number Diff line number Diff line Loading @@ -105,6 +105,9 @@ class HvClient(Client): self.unregister(child) super(HvClient, self).shutdown() def execute(self, command): return self.conn.call('execute_command', command) def get_child_remote_tags(self, obj_id, tag): return self.conn.call('sub_tags', obj_id, (tag,))[tag] Loading Loading
ccserver/clients/host.py +3 −0 Original line number Diff line number Diff line Loading @@ -7,5 +7,8 @@ class HostClient(Client): ROLE = 'host' def execute(self, command): return self.conn.call('execute_command', command) Client.register_client_class(HostClient)
ccserver/clients/hv.py +3 −0 Original line number Diff line number Diff line Loading @@ -105,6 +105,9 @@ class HvClient(Client): self.unregister(child) super(HvClient, self).shutdown() def execute(self, command): return self.conn.call('execute_command', command) def get_child_remote_tags(self, obj_id, tag): return self.conn.call('sub_tags', obj_id, (tag,))[tag] Loading