From 7b30f3bbd26f8ee2fd38f640c73729c6516f3560 Mon Sep 17 00:00:00 2001 From: Nikolai Kondrashov Date: Thu, 11 Jan 2024 21:29:58 +0200 Subject: [PATCH] cloud: Name all PostgreSQL submitter users after databases --- cloud | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cloud b/cloud index 81c1acf4..4d727e70 100755 --- a/cloud +++ b/cloud @@ -1973,8 +1973,10 @@ function execute_command() { if "$test"; then psql_args+=( # Do not initialize the clean database - "#$psql_clean_test_database" "$psql_submitter" - "$psql_empty_test_database" "$psql_submitter" + "#$psql_clean_test_database" + "${psql_clean_test_database}_submitter" + "$psql_empty_test_database" + "${psql_empty_test_database}_submitter" ) fi declare -a -r psql_args