Skip to content

Commit

Permalink
Increase HTTP timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
MarekSuchanek committed Dec 30, 2024
1 parent c2e1e23 commit 8a629a3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions nanopub_submitter/nanopub.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,7 @@ def _publish_nanopub(nanopub_bundle: str, ctx: NanopubProcessingContext) -> list
'Content-Type': f'application/trig; charset={DEFAULT_ENCODING}',
'User-Agent': f'{PACKAGE_NAME}/{PACKAGE_VERSION}',
},
timeout=20,
verify=False,
timeout=300,
)
if not r.ok:
ok = False
Expand Down

0 comments on commit 8a629a3

Please sign in to comment.