Skip to content

Commit 72e5f38

Browse files
authored
Fix issue with missing setting in oauth SyncRepo task (#3656)
This was looking for setting DEFAULT_PRIVACY_LEVEL, which wasn't set by default in our settings.
1 parent 0a4a287 commit 72e5f38

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

readthedocs/settings/base.py

+1
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ def USE_PROMOS(self): # noqa
290290
# RTD Settings
291291
REPO_LOCK_SECONDS = 30
292292
ALLOW_PRIVATE_REPOS = False
293+
DEFAULT_PRIVACY_LEVEL = 'public'
293294
GROK_API_HOST = 'https://api.grokthedocs.com'
294295
SERVE_DOCS = ['public']
295296

0 commit comments

Comments
 (0)