We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 185abf7 commit dd3d70cCopy full SHA for dd3d70c
app/settings/globals.py
@@ -146,9 +146,7 @@
146
AWS_SECRETSMANAGER_URL = config("AWS_SECRETSMANAGER_URL", cast=str, default=None)
147
148
RW_API_URL = config("RW_API_URL", cast=str, default=None)
149
-RW_API_KEY = json.loads(
150
- config("RW_API_KEY", cast=str, default=json.dumps({"api_key": "foo"}))
151
-)["api_key"]
+RW_API_KEY = json.loads(config("RW_API_KEY", cast=str))["api_key"]
152
153
HOUR: int = int(60 * 60)
154
# Temporarily set high timeout for TCLF. See https://gfw.atlassian.net/browse/GTC-1843
0 commit comments