taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 384886066fa47ce31f293ba4155cf5369ff2f698
parent 6b2138ea80c07b29a1cd01174fa79d104cc8bbae
Author: MS <ms@taler.net>
Date:   Fri, 28 May 2021 18:49:38 +0200

fix check

Diffstat:
Mbin/taler-deployment-config-instances | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/taler-deployment-config-instances b/bin/taler-deployment-config-instances @@ -82,7 +82,7 @@ def ensure_instance(instance_id, name, payto_uris, auth): # FIXME: Eventually, this should be an actual secret token auth=auth, ) - # Here authenticats as 'default' (with same credentials of other instances.) + # Here authenticates as 'default' (with same credentials of other instances.) create_resp = requests.post( urljoin(MERCHANT_BACKEND_BASE_URL, "private/instances"), json=req, @@ -106,7 +106,7 @@ def ensure_instance(instance_id, name, payto_uris, auth): def is_merchant_running(): for proc in psutil.process_iter(): - if proc.name() == "taler-merchant-httpd" and proc.username == getuser(): + if proc.name() == "taler-merchant-httpd" and proc.username() == getuser(): return True return False