From 224afe3b367cba9b978115e969e714c14c71caa6 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 24 Apr 2018 17:03:17 +0300 Subject: Change: GET /work, POST /worker use access token to identify worker --- ick2/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ick2/client.py') diff --git a/ick2/client.py b/ick2/client.py index 4fd999d..3281dce 100644 --- a/ick2/client.py +++ b/ick2/client.py @@ -195,7 +195,7 @@ class ControllerClient: pass def get_work(self): - url = self.url('/work/{}'.format(self._name)) + url = self.url('/work') work = self._api.get_dict(url) logging.info('Requested work, got: %r', work) return work -- cgit v1.2.1