Skip to content

Commit

Permalink
fix: update obstore client_options
Browse files Browse the repository at this point in the history
Signed-off-by: machichima <[email protected]>
  • Loading branch information
machichima committed Jan 23, 2025
1 parent 31d8880 commit 9645dc7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions flytekit/core/data_persistence.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,9 @@ def s3store_from_env(bucket: str, retries: int, backoff: timedelta, **store_kwar
bucket,
config={
**store_kwargs,
"aws_allow_http": "true", # Allow HTTP connections
"aws_virtual_hosted_style_request": "false", # Use path-style addressing
},
client_options={"timeout": "999999s"}, # need to put this to somewhere for user to config?
client_options={"timeout": "99999s", "allow_http": "true"},
retry_config={
"max_retries": retries,
"backoff": {
Expand Down

0 comments on commit 9645dc7

Please sign in to comment.