Skip to content

Commit

Permalink
Downgrade the warning to an info
Browse files Browse the repository at this point in the history
Since this is driving me insane in sentry. We changed to a distributed object store and see this for most dataset accesses.
  • Loading branch information
hexylena committed Mar 19, 2018
1 parent b821b6a commit d547bcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/objectstore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ def __get_store_id_for(self, obj, **kwargs):
# if this instance has been switched from a non-distributed to a
# distributed object store, or if the object's store id is invalid,
# try to locate the object
log.warning('The backend object store ID (%s) for %s object with ID %s is invalid'
log.debug('The backend object store ID (%s) for %s object with ID %s is invalid'
% (obj.object_store_id, obj.__class__.__name__, obj.id))
for id, store in self.backends.items():
if store.exists(obj, **kwargs):
Expand Down

0 comments on commit d547bcf

Please sign in to comment.