summaryrefslogtreecommitdiff
path: root/ick2/workerapi.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-07-21 11:45:29 +0300
committerLars Wirzenius <liw@liw.fi>2019-08-03 21:06:50 +0300
commit7a6bc2f7749c10c1d3344ea0196e81ae95b7f0d7 (patch)
treee52472ac9665bc21886ccf27b7a79e76079d6afe /ick2/workerapi.py
parent4f2207571928dc685102e3b3ff55e79cd3d46b6d (diff)
downloadick2-7a6bc2f7749c10c1d3344ea0196e81ae95b7f0d7.tar.gz
Add: TokenGetter
Diffstat (limited to 'ick2/workerapi.py')
-rw-r--r--ick2/workerapi.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ick2/workerapi.py b/ick2/workerapi.py
index d4b508c..9a2c5f2 100644
--- a/ick2/workerapi.py
+++ b/ick2/workerapi.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2017-2018 Lars Wirzenius
+# Copyright (C) 2017-2019 Lars Wirzenius
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
@@ -34,4 +34,5 @@ class WorkerAPI(ick2.ResourceApiBase): # pragma: no cover
def create(self, body, **kwargs):
client_id = self._get_client_id(**kwargs)
body['worker'] = client_id
+ kwargs['token'] = self._token_getter.get_token()
return super().create(body, **kwargs)