summaryrefslogtreecommitdiff
path: root/src/backenddb/plugin_merchantdb_postgres.c
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2017-06-20 15:00:28 +0200
committerMarcello Stanisci <marcello.stanisci@inria.fr>2017-06-20 15:00:28 +0200
commit3322051a39621448ed4d893a96de465e5ab86e6f (patch)
tree9b6f9ced4f93d3cc4519732a5960bdc5f1ebc9b2 /src/backenddb/plugin_merchantdb_postgres.c
parent480d1ea4ba7e9c6ec8107e6334124d5bbd1a7c13 (diff)
downloadmerchant-3322051a39621448ed4d893a96de465e5ab86e6f.tar.gz
merchant-3322051a39621448ed4d893a96de465e5ab86e6f.tar.bz2
merchant-3322051a39621448ed4d893a96de465e5ab86e6f.zip
fix hanging db
Diffstat (limited to 'src/backenddb/plugin_merchantdb_postgres.c')
-rw-r--r--src/backenddb/plugin_merchantdb_postgres.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/backenddb/plugin_merchantdb_postgres.c b/src/backenddb/plugin_merchantdb_postgres.c
index 679b0552..dd45163e 100644
--- a/src/backenddb/plugin_merchantdb_postgres.c
+++ b/src/backenddb/plugin_merchantdb_postgres.c
@@ -2156,6 +2156,7 @@ postgres_increase_refund_for_contract (void *cls,
params,
&process_deposits_cb,
&ctx);
+
switch (ret)
{
case GNUNET_DB_STATUS_SUCCESS_NO_RESULTS:
@@ -2170,18 +2171,15 @@ postgres_increase_refund_for_contract (void *cls,
return GNUNET_SYSERR;
default:
/* Got one or more deposits */
+ if (GNUNET_OK != postgres_commit (cls))
+ {
+ GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
+ "Failed to commit transaction increasing refund\n");
+ return GNUNET_SYSERR;
+ }
+ GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Committed db transaction\n");
return ctx.err;
- break;
}
-
- if (GNUNET_OK != postgres_commit (cls))
- {
- GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
- "Failed to commit transaction increasing refund\n");
- return GNUNET_SYSERR;
- }
-
- return GNUNET_OK;
}