Add tooltips for firmware update back, fix print job override state

This commit is contained in:
ChrisTerBeke 2019-08-15 19:42:25 +02:00
parent 36f6bdca18
commit de3f82610a
No known key found for this signature in database
GPG key ID: A49F1AB9D7E0C263
5 changed files with 18 additions and 16 deletions

View file

@ -56,7 +56,7 @@ class CloudApiClient:
## Retrieves all the clusters for the user that is currently logged in.
# \param on_finished: The function to be called after the result is parsed.
def getClusters(self, on_finished: Callable[[List[CloudClusterResponse]], Any]) -> None:
url = "{}/clusters".format(self.CLUSTER_API_ROOT)
url = "{}/clusters?status=active".format(self.CLUSTER_API_ROOT)
reply = self._manager.get(self._createEmptyRequest(url))
self._addCallback(reply, on_finished, CloudClusterResponse)