Skip to content

Commit c73e7fc

Browse files
authored
remove super tight timeout in calling catalog dags endpoints (#2322)
1 parent bdaf4f2 commit c73e7fc

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

services/web/server/src/simcore_service_webserver/catalog_client.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,7 @@ async def make_request_and_envelope_response(
7373

7474
try:
7575

76-
async with session.request(
77-
method, url, headers=headers, data=data, timeout=ClientTimeout(total=0.01)
78-
) as resp:
76+
async with session.request(method, url, headers=headers, data=data) as resp:
7977
payload = await resp.json()
8078

8179
try:

0 commit comments

Comments
 (0)