scripts: Disable terminate-psql-sessions ON_ERROR_STOP for now.

This appears to fail nondeterministically in CI; there's likely a
better fix but this should let us get CI happy again.
This commit is contained in:
Tim Abbott 2019-04-22 15:49:48 -07:00
parent d89cf5a9ea
commit 74143a0801
1 changed files with 1 additions and 1 deletions

View File

@ -26,6 +26,6 @@ root)
;;
esac
"${psql[@]}" -v ON_ERROR_STOP=1 <<EOF
"${psql[@]}" <<EOF
SELECT pg_terminate_backend(pid) FROM pg_stat_activity WHERE datname IN ($tables);
EOF