commit 84cb25e977fb9ac15fd7f4363fd8dee429e4b0fd parent 0c5f57e79261bc5f62a44032a9092bc2b3afb829 Author: Christian Grothoff <christian@grothoff.org> Date: Fri, 28 Jul 2023 21:05:56 +0200 more jdbc: fixes Diffstat:
| M | src/auditor/setup.sh | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/auditor/setup.sh b/src/auditor/setup.sh @@ -98,7 +98,7 @@ function stop_libeufin() function launch_libeufin () { # shellcheck disable=SC2016 - export LIBEUFIN_SANDBOX_DB_CONNECTION='jdbc:postgresql://localhost/'"${DB}"'?socketFactory=org.newsclub.net.unix.AFUNIXSocketFactory$FactoryArg&socketFactoryArg='"$SOCKETDIR"'/.s.PGSQL.5432' + export LIBEUFIN_SANDBOX_DB_CONNECTION="postgresql:///${DB}" libeufin-sandbox serve \ --no-auth \ --port 18082 \ @@ -106,7 +106,7 @@ function launch_libeufin () { 2> "${MY_TMP_DIR}/libeufin-sandbox-stderr.log" & echo $! > "${MY_TMP_DIR}/libeufin-sandbox.pid" # shellcheck disable=SC2016 - export LIBEUFIN_NEXUS_DB_CONNECTION='jdbc:postgresql://localhost/'"${DB}"'?socketFactory=org.newsclub.net.unix.AFUNIXSocketFactory$FactoryArg&socketFactoryArg='"$SOCKETDIR"'/.s.PGSQL.5432' + export LIBEUFIN_NEXUS_DB_CONNECTION="postgresql:///${DB}" libeufin-nexus serve \ --port 8082 \ 2> "${MY_TMP_DIR}/libeufin-nexus-stderr.log" \