Skip to content

Commit abd39be

Browse files
committed
Keep auth token as part of job metadata
1 parent aa6cf21 commit abd39be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hubstorage/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def start_job(self, projectid=None, auth=None, **startparams):
6767
jobdata = jobq.start(**startparams)
6868
if jobdata:
6969
jobkey = jobdata.pop('key')
70-
jobauth = (jobkey, jobdata.pop('auth'))
70+
jobauth = (jobkey, jobdata['auth'])
7171
return self.get_job(jobkey, jobauth=jobauth, metadata=jobdata)
7272

7373
def get_project(self, *args, **kwargs):

0 commit comments

Comments
 (0)