Commit 5838b238 authored by Łukasz Nowak's avatar Łukasz Nowak Committed by Klaus Wölfel

Return result from RPC call

parent 5fd8d7e1
...@@ -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