Commit 8cade04c authored by Tom Lane's avatar Tom Lane

Fix buildfarm incompatibility in updated pg_upgrade test script.

Looks like some versions of the buildfarm script try to set the port via
--port in $EXTRA_REGRESS_OPTS.  Override that ...
parent 7e2b1c03
...@@ -103,6 +103,10 @@ do ...@@ -103,6 +103,10 @@ do
export PGPORT export PGPORT
done done
# buildfarm may try to override port via EXTRA_REGRESS_OPTS ...
EXTRA_REGRESS_OPTS="$EXTRA_REGRESS_OPTS --port=$PGPORT"
export EXTRA_REGRESS_OPTS
# enable echo so the user can see what is being executed # enable echo so the user can see what is being executed
set -x set -x
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment