commit 47629f429f949f04b4376597ee7b4420e26b6a47
parent c03762afa557d0528990322ef89bda281d5ef80a
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Wed, 9 Oct 2019 16:52:59 +0200
minor change
Diffstat:
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/sandbox/src/main/kotlin/Main.kt b/sandbox/src/main/kotlin/Main.kt
@@ -127,7 +127,6 @@ private suspend fun ApplicationCall.adminCustomersKeyletter() {
)
return
}
- logger.info(body.toString())
/**********************************************/
@@ -136,6 +135,10 @@ private suspend fun ApplicationCall.adminCustomersKeyletter() {
/**********************************************/
+ respond(
+ HttpStatusCode.NotImplemented,
+ SandboxError("Not properly implemented")
+ )
}
private suspend fun ApplicationCall.ebicsweb() {
diff --git a/sandbox/src/main/python/libeufin-cli b/sandbox/src/main/python/libeufin-cli
@@ -205,7 +205,6 @@ def keyletter(obj, customer_id):
)
try:
- print("POSTing {}".format(body))
resp = post(url, json=body)
except Exception:
print("Could not reach the bank, aborting now")