Skip to content

Commit

Permalink
Temporary, ignore S3 object store failed init
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Jun 11, 2024
1 parent b8e2bfc commit 4feaa2b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/galaxy/objectstore/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,11 @@ def __init__(self, config, config_dict):
extra_dirs = {e["type"]: e["path"] for e in config_dict.get("extra_dirs", [])}
self.extra_dirs.update(extra_dirs)

self._initialize()
try:
self._initialize()
except Exception:
# don't die for now, need to stop serializing object stores that a job isn't going to use
pass

def _initialize(self):
if boto is None:
Expand Down

0 comments on commit 4feaa2b

Please sign in to comment.