Skip to content

Commit f4b3b86

Browse files
authored
Pass sign kwargs to generate_signed_url (#460)
1 parent 07e99a8 commit f4b3b86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gcsfs/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1228,7 +1228,7 @@ def sign(self, path, expiration=100, **kwargs):
12281228
)
12291229
bucket = client.bucket(bucket)
12301230
blob = bucket.blob(key)
1231-
return blob.generate_signed_url(expiration=expiration)
1231+
return blob.generate_signed_url(expiration=expiration, **kwargs)
12321232

12331233

12341234
GoogleCredentials.load_tokens()

0 commit comments

Comments
 (0)