diff options
author | malar <malarvizhi.44@wipro.com> | 2022-09-05 10:35:11 +0000 |
---|---|---|
committer | malar <malarvizhi.44@wipro.com> | 2022-09-05 10:35:11 +0000 |
commit | b1a9ffb9c73fdd6fe27f007e6de9c2d45476cf61 (patch) | |
tree | 7fffbe8ab83bfa5829e7f0af9e0d0c77209baec6 | |
parent | e0bc695465e0b0dd596e118e6ab2a54a0625dc46 (diff) |
Fix timeout issue in OSDF on sending plan request to HAS-API
Issue-ID: OPTFRA-1080
Signed-off-by: Malarvizhi Paramasivam <malarvizhi.44@wipro.com>
Change-Id: I71b39abd68a6c4e0fe3394f3da9c09d88ae96512
-rw-r--r-- | osdf/utils/interfaces.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |