gnunet-svn
[Top][All Lists]
Advanced

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

[libeufin] branch master updated (feb93762 -> 9242821d)


From: gnunet
Subject: [libeufin] branch master updated (feb93762 -> 9242821d)
Date: Thu, 30 Jun 2022 14:58:45 +0200

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

ms pushed a change to branch master
in repository libeufin.

    from feb93762 fix WTID storage
     new 3bf7393a debug
     new 9242821d enable Gradle cache

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gradle.properties                                                     | 1 +
 nexus/src/main/kotlin/tech/libeufin/nexus/bankaccount/BankAccount.kt  | 2 +-
 sandbox/src/main/kotlin/tech/libeufin/sandbox/EbicsProtocolBackend.kt | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/gradle.properties b/gradle.properties
index 7fc6f1ff..a51a807f 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1 +1,2 @@
 kotlin.code.style=official
+org.gradle.caching=true
\ No newline at end of file
diff --git 
a/nexus/src/main/kotlin/tech/libeufin/nexus/bankaccount/BankAccount.kt 
b/nexus/src/main/kotlin/tech/libeufin/nexus/bankaccount/BankAccount.kt
index 33729e12..7bd0a035 100644
--- a/nexus/src/main/kotlin/tech/libeufin/nexus/bankaccount/BankAccount.kt
+++ b/nexus/src/main/kotlin/tech/libeufin/nexus/bankaccount/BankAccount.kt
@@ -51,7 +51,6 @@ fun requireBankAccount(call: ApplicationCall, parameterKey: 
String): NexusBankAc
     return account
 }
 
-// called twice: once from the background task, once from the ad-hoc endpoint.
 suspend fun submitPaymentInitiation(httpClient: HttpClient, 
paymentInitiationId: Long) {
     val r = transaction {
         val paymentInitiation = 
PaymentInitiationEntity.findById(paymentInitiationId)
@@ -106,6 +105,7 @@ suspend fun submitAllPaymentInitiations(httpClient: 
HttpClient, accountid: Strin
         }
     }
     workQueue.forEach {
+        logger.debug("Submitting payment ${it.id}")
         submitPaymentInitiation(httpClient, it.id)
     }
 }
diff --git 
a/sandbox/src/main/kotlin/tech/libeufin/sandbox/EbicsProtocolBackend.kt 
b/sandbox/src/main/kotlin/tech/libeufin/sandbox/EbicsProtocolBackend.kt
index ede3db71..6d145934 100644
--- a/sandbox/src/main/kotlin/tech/libeufin/sandbox/EbicsProtocolBackend.kt
+++ b/sandbox/src/main/kotlin/tech/libeufin/sandbox/EbicsProtocolBackend.kt
@@ -1236,7 +1236,7 @@ private fun 
handleEbicsUploadTransactionTransmission(requestContext: RequestCont
         )
         val unzippedData =
             InflaterInputStream(zippedData.inputStream()).use { 
it.readAllBytes() }
-        logger.debug("got upload data: 
${unzippedData.toString(Charsets.UTF_8)}")
+        // logger.debug("got upload data: 
${unzippedData.toString(Charsets.UTF_8)}")
 
         val sigs = EbicsOrderSignatureEntity.find {
             (EbicsOrderSignaturesTable.orderID eq uploadTransaction.orderID) 
and

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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