From e23e8b2f252a7980ca480da0e88903cd4b102fb3 Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Mon, 21 Sep 2020 16:37:34 +0200 Subject: [PATCH] Fix ObjectStorePopulator use The user argument is now mandatory. Broken in https://github.com/galaxyproject/galaxy/pull/10231. --- lib/galaxy/jobs/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/galaxy/jobs/__init__.py b/lib/galaxy/jobs/__init__.py index 2487ca94c575..16f80b8d1176 100644 --- a/lib/galaxy/jobs/__init__.py +++ b/lib/galaxy/jobs/__init__.py @@ -1455,7 +1455,7 @@ def _set_object_store_ids(self, job): # jobs may have this set. Skip this following code if that is the case. return - object_store_populator = ObjectStorePopulator(self.app, job.user) + object_store_populator = ObjectStorePopulator(self.app) object_store_id = self.get_destination_configuration("object_store_id", None) if object_store_id: object_store_populator.object_store_id = object_store_id