Mercurial > hg > orthanc-tests
changeset 602:d88b0fc15f08
change ports
author | Alain Mazy <am@osimis.io> |
---|---|
date | Fri, 19 Jan 2024 15:55:24 +0100 |
parents | 3e15e950c462 |
children | 75244cf58a6d |
files | NewTests/Concurrency/docker-compose-transfers-concurrency.yml NewTests/Concurrency/test_transfer.py |
diffstat | 2 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/NewTests/Concurrency/docker-compose-transfers-concurrency.yml Fri Jan 19 15:03:47 2024 +0100 +++ b/NewTests/Concurrency/docker-compose-transfers-concurrency.yml Fri Jan 19 15:55:24 2024 +0100 @@ -6,7 +6,7 @@ container_name: orthanc-pg-a depends_on: [pg-a] restart: unless-stopped - ports: ["8052:8042"] + ports: ["8062:8042"] volumes: ["storage-orthanc-a:/var/lib/orthanc/db"] environment: # VERBOSE_ENABLED: "true" @@ -34,7 +34,7 @@ container_name: orthanc-pg-b depends_on: [pg-b] restart: unless-stopped - ports: ["8053:8042"] + ports: ["8063:8042"] volumes: ["storage-orthanc-b:/var/lib/orthanc/db"] environment: # VERBOSE_ENABLED: "true"
--- a/NewTests/Concurrency/test_transfer.py Fri Jan 19 15:03:47 2024 +0100 +++ b/NewTests/Concurrency/test_transfer.py Fri Jan 19 15:55:24 2024 +0100 @@ -39,8 +39,8 @@ pass def clean_start(self): - oa = OrthancApiClient("http://localhost:8052") - ob = OrthancApiClient("http://localhost:8053") + oa = OrthancApiClient("http://localhost:8062") + ob = OrthancApiClient("http://localhost:8063") oa.wait_started() ob.wait_started()