From 2f27f987adc3093c5f5d9668ec86908d157f872a Mon Sep 17 00:00:00 2001 From: Remy Date: Mon, 24 Apr 2023 17:20:05 +0200 Subject: [PATCH] Increase daml-assistant GRPC timeout (#16751) 10s is definitively too short for the ledger to upload a "big" dar especially when on load. We bump it to 60s following the one uses in the scenario service. --- daml-assistant/daml-helper/src/DA/Daml/Helper/Ledger.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daml-assistant/daml-helper/src/DA/Daml/Helper/Ledger.hs b/daml-assistant/daml-helper/src/DA/Daml/Helper/Ledger.hs index 61eecea93e6e..8320b771f944 100644 --- a/daml-assistant/daml-helper/src/DA/Daml/Helper/Ledger.hs +++ b/daml-assistant/daml-helper/src/DA/Daml/Helper/Ledger.hs @@ -105,7 +105,7 @@ defaultLedgerFlags :: LedgerApi -> LedgerFlags defaultLedgerFlags api = LedgerFlags { fApi = api , fSslConfigM = Nothing - , fTimeout = 10 + , fTimeout = 60 , fHostM = Nothing , fPortM = Nothing , fTokFileM = Nothing