Commit 4fcf1f9e by David Baumgold

Move simplefilter comments before call

parent 838ce74a
...@@ -158,9 +158,9 @@ filterwarnings('ignore', message='No request passed to the backend, unable to ra ...@@ -158,9 +158,9 @@ filterwarnings('ignore', message='No request passed to the backend, unable to ra
# Ignore deprecation warnings (so we don't clutter Jenkins builds/production) # Ignore deprecation warnings (so we don't clutter Jenkins builds/production)
# https://docs.python.org/2/library/warnings.html#the-warnings-filter # https://docs.python.org/2/library/warnings.html#the-warnings-filter
simplefilter('ignore')
# Change to "default" to see the first instance of each hit # Change to "default" to see the first instance of each hit
# or "error" to convert all into errors # or "error" to convert all into errors
simplefilter('ignore')
################################# CELERY ###################################### ################################# CELERY ######################################
......
...@@ -199,9 +199,9 @@ filterwarnings('ignore', message='No request passed to the backend, unable to ra ...@@ -199,9 +199,9 @@ filterwarnings('ignore', message='No request passed to the backend, unable to ra
# Ignore deprecation warnings (so we don't clutter Jenkins builds/production) # Ignore deprecation warnings (so we don't clutter Jenkins builds/production)
# https://docs.python.org/2/library/warnings.html#the-warnings-filter # https://docs.python.org/2/library/warnings.html#the-warnings-filter
simplefilter('ignore')
# Change to "default" to see the first instance of each hit # Change to "default" to see the first instance of each hit
# or "error" to convert all into errors # or "error" to convert all into errors
simplefilter('ignore')
######### Third-party auth ########## ######### Third-party auth ##########
FEATURES['ENABLE_THIRD_PARTY_AUTH'] = True FEATURES['ENABLE_THIRD_PARTY_AUTH'] = True
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment