You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the value is an empty object, {}, then you probably have a typo in your secrets.py file, so:
Find & Fix the typo.
Repeat steps 3–5 until the result is not an empty object.
Once this error is resolved, delete the line added in step 2.
Explanation
Because _CONSOLE_LOG_ENABLED is the first secret expected to exist, the error calls out that secret. But, the issue is actually that the current_secrets are empty, so settings.py will not find any secret it is told to access. The current_secrets is empty because settings.py does not judge whether you have an empty secrets file. Should it? If you think so, please create an issue.