From b1a9ffb9c73fdd6fe27f007e6de9c2d45476cf61 Mon Sep 17 00:00:00 2001 From: malar Date: Mon, 5 Sep 2022 10:35:11 +0000 Subject: Fix timeout issue in OSDF on sending plan request to HAS-API Issue-ID: OPTFRA-1080 Signed-off-by: Malarvizhi Paramasivam Change-Id: I71b39abd68a6c4e0fe3394f3da9c09d88ae96512 --- osdf/utils/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osdf/utils/interfaces.py b/osdf/utils/interfaces.py index a0a564e..4fa4730 100644 --- a/osdf/utils/interfaces.py +++ b/osdf/utils/interfaces.py @@ -62,7 +62,7 @@ class RestClient(object): self.method = method self.url = url self.log_func = log_func - self.timeout = (30, 90) if timeout is None else timeout + self.timeout = (30, 120) if timeout is None else timeout self.req_id = req_id self.verify = verify -- cgit 1.2.3-korg