From 7d1daf02fad08abdece2e9b684e4ee7aff4c2b13 Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Thu, 23 Jun 2016 06:35:08 +0000 Subject: Settings: add GN_SERVER_URL --- wqflask/db/call.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wqflask/db') 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) -- cgit v1.2.3