File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 63
63
S3_PROXY_URI = "s3.proxy-uri"
64
64
S3_CONNECT_TIMEOUT = "s3.connect-timeout"
65
65
S3_REQUEST_TIMEOUT = "s3.request-timeout"
66
+ S3_SIGNER = "s3.signer"
66
67
S3_SIGNER_URI = "s3.signer.uri"
67
68
S3_SIGNER_ENDPOINT = "s3.signer.endpoint"
68
69
S3_SIGNER_ENDPOINT_DEFAULT = "v1/aws/s3/sign"
Original file line number Diff line number Diff line change 67
67
S3_REQUEST_TIMEOUT ,
68
68
S3_SECRET_ACCESS_KEY ,
69
69
S3_SESSION_TOKEN ,
70
+ S3_SIGNER ,
70
71
S3_SIGNER_ENDPOINT ,
71
72
S3_SIGNER_ENDPOINT_DEFAULT ,
72
73
S3_SIGNER_URI ,
@@ -137,7 +138,7 @@ def _s3(properties: Properties) -> AbstractFileSystem:
137
138
config_kwargs = {}
138
139
register_events : Dict [str , Callable [[Properties ], None ]] = {}
139
140
140
- if signer := properties .get ("s3.signer" ):
141
+ if signer := properties .get (S3_SIGNER ):
141
142
logger .info ("Loading signer %s" , signer )
142
143
if signer_func := SIGNERS .get (signer ):
143
144
signer_func_with_properties = partial (signer_func , properties )
You can’t perform that action at this time.
0 commit comments