Skip to content

Commit

Permalink
cloud: Name all PostgreSQL submitter users after databases
Browse files Browse the repository at this point in the history
  • Loading branch information
spbnick committed Jan 15, 2024
1 parent 53c3e1d commit 7b30f3b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cloud
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7b30f3b

Please sign in to comment.