comparison NewTests/Concurrency/docker-compose-transfers-concurrency.yml @ 729:694b048afad9

fix transfer tests
author Alain Mazy <am@orthanc.team>
date Fri, 18 Oct 2024 14:26:20 +0200
parents 75dbc81d0e26
children
comparison
equal deleted inserted replaced
711:0322fda1834e 729:694b048afad9
7 depends_on: [pg-a] 7 depends_on: [pg-a]
8 restart: unless-stopped 8 restart: unless-stopped
9 ports: ["8062:8042"] 9 ports: ["8062:8042"]
10 volumes: ["storage-orthanc-a:/var/lib/orthanc/db"] 10 volumes: ["storage-orthanc-a:/var/lib/orthanc/db"]
11 environment: 11 environment:
12 # VERBOSE_ENABLED: "true" 12 VERBOSE_STARTUP: "true"
13 VERBOSE_ENABLED: "true"
13 TRANSFERS_PLUGIN_ENABLED: "true" 14 TRANSFERS_PLUGIN_ENABLED: "true"
15 # increase this timeout for large transfers (it is configured at 2sec by the default integration tests config)
16 ORTHANC__HTTP_TIMEOUT: "60"
17 ORTHANC__TRANSFERS__PEER_CONNECTIVITY_TIMEOUT: "10"
14 # disable DICOMWEB to avoid the metadata cache to consume disk space after StableStudy -> difficult to compare disk sizes 18 # disable DICOMWEB to avoid the metadata cache to consume disk space after StableStudy -> difficult to compare disk sizes
15 DICOM_WEB_PLUGIN_ENABLED: "false" 19 DICOM_WEB_PLUGIN_ENABLED: "false"
16 ORTHANC__POSTGRESQL: | 20 ORTHANC__POSTGRESQL: |
17 { 21 {
18 "Host": "pg-a", 22 "Host": "pg-a",
37 depends_on: [pg-b] 41 depends_on: [pg-b]
38 restart: unless-stopped 42 restart: unless-stopped
39 ports: ["8063:8042"] 43 ports: ["8063:8042"]
40 volumes: ["storage-orthanc-b:/var/lib/orthanc/db"] 44 volumes: ["storage-orthanc-b:/var/lib/orthanc/db"]
41 environment: 45 environment:
42 # VERBOSE_ENABLED: "true" 46 VERBOSE_STARTUP: "true"
47 VERBOSE_ENABLED: "true"
43 TRANSFERS_PLUGIN_ENABLED: "true" 48 TRANSFERS_PLUGIN_ENABLED: "true"
49 # increase this timeout for large transfers (it is configured at 2sec by the default integration tests config)
50 ORTHANC__HTTP_TIMEOUT: "60"
51 ORTHANC__TRANSFERS__PEER_CONNECTIVITY_TIMEOUT: "10"
44 DICOM_WEB_PLUGIN_ENABLED: "false" 52 DICOM_WEB_PLUGIN_ENABLED: "false"
45 ORTHANC__POSTGRESQL: | 53 ORTHANC__POSTGRESQL: |
46 { 54 {
47 "Host": "pg-b", 55 "Host": "pg-b",
48 "TransactionMode": "ReadCommitted" 56 "TransactionMode": "ReadCommitted"