gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-donations] branch master updated: use correct WSGI m


From: gnunet
Subject: [GNUnet-SVN] [taler-donations] branch master updated: use correct WSGI module
Date: Sat, 31 Aug 2019 16:59:06 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository donations.

The following commit(s) were added to refs/heads/master by this push:
     new 38acb9f  use correct WSGI module
38acb9f is described below

commit 38acb9f039fb01a7bc0aef8b93a277e919899ae9
Author: Florian Dold <address@hidden>
AuthorDate: Sat Aug 31 16:59:04 2019 +0200

    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)

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]