From beac24933e2b641409ce7d571323c291a50b1f4a Mon Sep 17 00:00:00 2001 From: David Poltorak Date: Fri, 20 Oct 2023 12:06:20 +0100 Subject: [PATCH] fix: increase timeout for single tenant testing stack for apisix Signed-off-by: David Poltorak --- .../apisix/conf/apisix.yaml | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/infrastructure/single-tenant-testing-stack/apisix/conf/apisix.yaml b/infrastructure/single-tenant-testing-stack/apisix/conf/apisix.yaml index fd7ea3c557..92a710f380 100644 --- a/infrastructure/single-tenant-testing-stack/apisix/conf/apisix.yaml +++ b/infrastructure/single-tenant-testing-stack/apisix/conf/apisix.yaml @@ -37,24 +37,48 @@ upstreams: nodes: "issuer-oea:8085": 1 # tapir type: roundrobin + timeout: + connect: 900 + send: 900 + read: 900 - id: 2 nodes: "issuer-oea:8090": 1 # didcom type: roundrobin + timeout: + connect: 900 + send: 900 + read: 900 - id: 3 nodes: "verifier-oea:8085": 1 # tapir type: roundrobin + timeout: + connect: 900 + send: 900 + read: 900 - id: 4 nodes: "verifier-oea:8090": 1 # didcom type: roundrobin + timeout: + connect: 900 + send: 900 + read: 900 - id: 5 nodes: "holder-oea:8085": 1 # tapir type: roundrobin + timeout: + connect: 900 + send: 900 + read: 900 - id: 6 nodes: "holder-oea:8090": 1 # didcom type: roundrobin + timeout: + connect: 900 + send: 900 + read: 900 #END