summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMS <ms@taler.net>2021-05-28 18:49:38 +0200
committerMS <ms@taler.net>2021-05-28 18:49:38 +0200
commit384886066fa47ce31f293ba4155cf5369ff2f698 (patch)
treebe02d39247bca443d371a57214623cd9281e7f27
parent6b2138ea80c07b29a1cd01174fa79d104cc8bbae (diff)
downloaddeployment-384886066fa47ce31f293ba4155cf5369ff2f698.tar.gz
deployment-384886066fa47ce31f293ba4155cf5369ff2f698.tar.bz2
deployment-384886066fa47ce31f293ba4155cf5369ff2f698.zip
fix check
-rwxr-xr-xbin/taler-deployment-config-instances4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/taler-deployment-config-instances b/bin/taler-deployment-config-instances
index 02ee999..426b84c 100755
--- 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