aboutsummaryrefslogtreecommitdiff
path: root/src/auditor
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-07-28 21:05:56 +0200
committerChristian Grothoff <christian@grothoff.org>2023-07-28 21:05:56 +0200
commit84cb25e977fb9ac15fd7f4363fd8dee429e4b0fd (patch)
treeba9c7364fa11c2102e612f85afbb8cd519f8fd9f /src/auditor
parent0c5f57e79261bc5f62a44032a9092bc2b3afb829 (diff)
downloadexchange-84cb25e977fb9ac15fd7f4363fd8dee429e4b0fd.tar.xz
more jdbc: fixes
Diffstat (limited to 'src/auditor')
-rwxr-xr-xsrc/auditor/setup.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/auditor/setup.sh b/src/auditor/setup.sh
index 55f0a4742..3776978d4 100755
--- 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" \