This is an automated email from the ASF dual-hosted git repository. zrhoffman pushed a commit to branch 6.0.x in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git
commit 975626765f3014fc49c98c5d77cb708abd21d050 Author: Zach Hoffman <[email protected]> AuthorDate: Thu Oct 14 23:12:32 2021 +0000 TP Tests GHA: Set Selenium 4 Docker image environment variables (#6290) --- .github/workflows/tp.integration.tests.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tp.integration.tests.yml b/.github/workflows/tp.integration.tests.yml index 03caaaf..14bc705 100644 --- a/.github/workflows/tp.integration.tests.yml +++ b/.github/workflows/tp.integration.tests.yml @@ -57,13 +57,16 @@ jobs: hub: image: selenium/hub ports: - - "4444:4444" + - 4442:4442 + - 4443:4443 + - 4444:4444 options: --health-cmd=/opt/bin/check-grid.sh --health-interval=5s --health-timeout=15s --health-retries=5 chromium: image: ossalternatives/selenium-node-chromium env: - HUB_HOST: hub - HUB_PORT: 4444 + SE_EVENT_BUS_HOST: hub + SE_EVENT_BUS_PUBLISH_PORT: 4442 + SE_EVENT_BUS_SUBSCRIBE_PORT: 4443 volumes: - /dev/shm:/dev/shm postgres:
