Skip to content

Commit

Permalink
swap order of protocols to favor "gs" when unstripping protocol from …
Browse files Browse the repository at this point in the history
…URI (#620)
  • Loading branch information
alexdmiller authored May 16, 2024
1 parent 17e649a commit 25657e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcsfs/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ class GCSFileSystem(asyn.AsyncFileSystem):
scopes = {"read_only", "read_write", "full_control"}
retries = 6 # number of retries on http failure
default_block_size = DEFAULT_BLOCK_SIZE
protocol = "gcs", "gs"
protocol = "gs", "gcs"
async_impl = True

def __init__(
Expand Down

0 comments on commit 25657e4

Please sign in to comment.