diff options
author | Pjotr Prins | 2016-06-23 06:35:08 +0000 |
---|---|---|
committer | Pjotr Prins | 2016-06-23 06:35:08 +0000 |
commit | 7d1daf02fad08abdece2e9b684e4ee7aff4c2b13 (patch) | |
tree | 1f0878fb39bb69614348dd2b6d6bef4961912408 /wqflask | |
parent | 758272e8717774475cdce0576d0f08b1fbf7585d (diff) | |
download | genenetwork2-7d1daf02fad08abdece2e9b684e4ee7aff4c2b13.tar.gz |
Settings: add GN_SERVER_URL
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/db/call.py | 2 | ||||
-rw-r--r-- | wqflask/utility/tools.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/wqflask/db/call.py b/wqflask/db/call.py index 8b47c0ba..ecffdfa1 100644 --- a/wqflask/db/call.py +++ b/wqflask/db/call.py @@ -44,7 +44,7 @@ def gn_server(path): """ with Bench("GN_SERVER",LOG_SQL): - res = urllib2.urlopen("http://localhost:8880/"+path) + res = urllib2.urlopen(GN_SERVER_URL+path) rest = res.read() res2 = json.loads(rest) logger.info(res2) diff --git a/wqflask/utility/tools.py b/wqflask/utility/tools.py index c467fa74..21c9c1b7 100644 --- a/wqflask/utility/tools.py +++ b/wqflask/utility/tools.py @@ -168,6 +168,7 @@ def show_settings(): # Cached values WEBSERVER_MODE = get_setting('WEBSERVER_MODE') +GN_SERVER_URL = get_setting('GN_SERVER_URL') LOG_LEVEL = get_setting('LOG_LEVEL') LOG_LEVEL_DEBUG = get_setting_int('LOG_LEVEL_DEBUG') LOG_SQL = get_setting_bool('LOG_SQL') |