We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 259c5f7 commit df9b325Copy full SHA for df9b325
src/sentry/models/files/utils.py
@@ -112,15 +112,15 @@ def get_profiles_storage(config=None) -> Storage:
112
from sentry import options as options_store
113
114
backend = options_store.get("filestore.profiles-backend")
115
- relocation = options_store.get("filestore.profiles-options")
+ profiles = options_store.get("filestore.profiles-options")
116
117
try:
118
backend = settings.SENTRY_FILESTORE_ALIASES[backend]
119
except KeyError:
120
pass
121
122
storage = import_string(backend)
123
- return storage(**relocation)
+ return storage(**profiles)
124
125
126
def clear_cached_files(cache_path):
0 commit comments