Skip to content

Commit

Permalink
Updated adsmutils (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
marblestation committed Aug 10, 2018
1 parent ec9b665 commit 06a74aa
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 1 deletion.
3 changes: 3 additions & 0 deletions adsws/accounts/config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
LOG_LEVEL = 30 # To be deprecated when all microservices use ADSFlask
LOGGING_LEVEL = "INFO"
LOG_STDOUT = True
BOOTSTRAP_USER_EMAIL = 'anonymous@ads'
BOOTSTRAP_TOKEN_EXPIRES = 3600*24 # 1 day
BOOTSTRAP_SCOPES = []
Expand Down
3 changes: 3 additions & 0 deletions adsws/api/config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
LOG_LEVEL = 30 # To be deprecated when all microservices use ADSFlask
LOGGING_LEVEL = "INFO"
LOG_STDOUT = True
DEFAULT_REQUEST_TIMEOUT = 60 # seconds
SECURITY_REGISTER_BLUEPRINT = False
EXTENSIONS = ['adsws.ext.menu',
Expand Down
3 changes: 3 additions & 0 deletions adsws/benchmark/config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
LOG_LEVEL = 30 # To be deprecated when all microservices use ADSFlask
LOGGING_LEVEL = "INFO"
LOG_STDOUT = True
SECURITY_REGISTER_BLUEPRINT = False
EXTENSIONS = ['adsws.ext.menu',
'adsws.ext.sqlalchemy',
Expand Down
3 changes: 3 additions & 0 deletions adsws/feedback/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Configuration file. Please prefix application specific config values with
the application name.
"""
LOG_LEVEL = 30 # To be deprecated when all microservices use ADSFlask
LOGGING_LEVEL = "INFO"
LOG_STDOUT = True
EXTENSIONS = [
'adsws.ext.ratelimiter',
'adsws.ext.mail'
Expand Down
3 changes: 3 additions & 0 deletions adsws/frontend/config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
LOG_LEVEL = 30 # To be deprecated when all microservices use ADSFlask
LOGGING_LEVEL = "INFO"
LOG_STDOUT = True
EXTENSIONS = [
'adsws.ext.sqlalchemy',
'adsws.ext.security',
Expand Down
4 changes: 4 additions & 0 deletions adsws/modules/oauth2server/config.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# -*- coding: utf-8 -*-

LOG_LEVEL = 30 # To be deprecated when all microservices use ADSFlask
LOGGING_LEVEL = "INFO"
LOG_STDOUT = True

OAUTH2_CACHE_TYPE = 'redis'
""" Type of cache to use for storing the temporary grant token """

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
git+https://github.com/adsabs/ADSMicroserviceUtils.git@v1.0.4
git+https://github.com/adsabs/ADSMicroserviceUtils.git@v1.0.6
flask-headers==1.0
git+https://github.com/adsabs/flask-limiter.git@fb1bbd3e4894c4298798601121dbf9782a6bafe8#egg=flask-limiter
flask-cors==1.9.0
Expand Down

0 comments on commit 06a74aa

Please sign in to comment.