From 38acb9f039fb01a7bc0aef8b93a277e919899ae9 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Sat, 31 Aug 2019 16:59:04 +0200 Subject: use correct WSGI module --- bin/taler-merchant-donations | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/taler-merchant-donations b/bin/taler-merchant-donations index 0bda611..ccf6a4e 100644 --- a/bin/taler-merchant-donations +++ b/bin/taler-merchant-donations @@ -44,7 +44,7 @@ def handle_serve_http(args): spec = ":%d" % (port, ) os.execlp( "uwsgi", "uwsgi", "--master", "--die-on-term", "--log-format", - UWSGI_LOGFMT, "--http", spec, "--module", "talerdonations" + UWSGI_LOGFMT, "--http", spec, "--module", "talerdonations.donations:app" ) @@ -61,7 +61,7 @@ def handle_serve_uwsgi(args): ).lower() params = [ "uwsgi", "uwsgi", "--master", "--die-on-term", "--log-format", - UWSGI_LOGFMT, "--module", "talerdonations" + UWSGI_LOGFMT, "--module", "talerdonations.donations:app" ] if serve_uwsgi == "tcp": port = TC["donations"]["uwsgi_port"].value_int(required=True) -- cgit v1.2.3