Commit 7a9aa71e authored by Łukasz Nowak's avatar Łukasz Nowak

Return result from RPC call

parent 86698987
...@@ -483,7 +483,8 @@ class TaskDistributor(RPCRetry): ...@@ -483,7 +483,8 @@ class TaskDistributor(RPCRetry):
""" """
Susbscribes node with the node title and the computer guid. Susbscribes node with the node title and the computer guid.
""" """
self._retryRPC('subscribeNode', (node_title,computer_guid,)) result = self._retryRPC('subscribeNode', (node_title,computer_guid,))
return result
def generateConfiguration(self, test_suite_title): def generateConfiguration(self, test_suite_title):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment