Skip to content

Commit

Permalink
Fix ObjectStorePopulator use
Browse files Browse the repository at this point in the history
The user argument is now mandatory.
Broken in galaxyproject#10231.
  • Loading branch information
mvdbeek committed Sep 21, 2020
1 parent 4a822ad commit e23e8b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/jobs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e23e8b2

Please sign in to comment.