This is an automated email from the ASF dual-hosted git repository.
lostluck pushed a commit to branch prismContainerPrecommit
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/prismContainerPrecommit by
this push:
new 11104e3ce2b Don't serve prism UI by default.
11104e3ce2b is described below
commit 11104e3ce2becb7705bd8d9bfa1a6dc1942a68fc
Author: lostluck <[email protected]>
AuthorDate: Fri Sep 15 14:27:24 2023 -0700
Don't serve prism UI by default.
---
sdks/go/test/run_validatesrunner_tests.sh | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/sdks/go/test/run_validatesrunner_tests.sh
b/sdks/go/test/run_validatesrunner_tests.sh
index 6f4c5c62182..fd4856f25a0 100755
--- a/sdks/go/test/run_validatesrunner_tests.sh
+++ b/sdks/go/test/run_validatesrunner_tests.sh
@@ -293,9 +293,7 @@ if [[ "$RUNNER" == "flink" || "$RUNNER" == "spark" ||
"$RUNNER" == "samza" || "$
elif [[ "$RUNNER" == "prism" ]]; then
PRISMBIN=$TMPDIR/prismbin
./sdks/go/run_with_go_version.sh build -o $PRISMBIN
sdks/go/cmd/prism/*.go
- $PRISMBIN \
- --serve_http=true \
- --job_port $JOB_PORT &
+ $PRISMBIN --job_port $JOB_PORT &
else
echo "Unknown runner: $RUNNER"
exit 1;