summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-31 17:02:22 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-31 17:02:22 +0200
commit1f2207ab0fa4ae534f08ec6bd1093c727672cc58 (patch)
tree288e4397b90b7c60141a3a2fabdfc5824673b79a
parentaf30f7474c065c4a235b5ed356a046039959a1e1 (diff)
downloadbackoffice-1f2207ab0fa4ae534f08ec6bd1093c727672cc58.tar.gz
backoffice-1f2207ab0fa4ae534f08ec6bd1093c727672cc58.tar.bz2
backoffice-1f2207ab0fa4ae534f08ec6bd1093c727672cc58.zip
use correct WSGI module
-rwxr-xr-xbin/taler-merchant-backoffice4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/taler-merchant-backoffice b/bin/taler-merchant-backoffice
index 0b190d5..e3fbf0f 100755
--- a/bin/taler-merchant-backoffice
+++ b/bin/taler-merchant-backoffice
@@ -27,7 +27,7 @@ def handle_serve_http(args):
"--die-on-term",
"--log-format", UWSGI_LOGFMT,
"--http", spec,
- "--module", "talerbackoffice",
+ "--module", "talerbackoffice.backoffice.app",
"--env", "BACKOFFICE_BACKEND=%s" % TC["backoffice-%s" % args.frontend]["backend"].value_string(required=True),
"--env", "BACKOFFICE_INSTANCES=%s" % TC["backoffice-%s" % args.frontend]["instances"].value_string(required=True))
@@ -38,7 +38,7 @@ def handle_serve_uwsgi(args):
"--master",
"--die-on-term",
"--log-format", UWSGI_LOGFMT,
- "--module", "talerbackoffice",
+ "--module", "talerbackoffice.backoffice.app",
"--env", "BACKOFFICE_BACKEND=%s" % TC["backoffice-%s" % args.frontend]["backend"].value_string(required=True),
"--env", "BACKOFFICE_INSTANCES=%s" % TC["backoffice-%s" % args.frontend]["instances"].value_string(required=True)]
if serve_uwsgi == "tcp":