File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 6363S3_PROXY_URI = "s3.proxy-uri"
6464S3_CONNECT_TIMEOUT = "s3.connect-timeout"
6565S3_REQUEST_TIMEOUT = "s3.request-timeout"
66+ S3_SIGNER = "s3.signer"
6667S3_SIGNER_URI = "s3.signer.uri"
6768S3_SIGNER_ENDPOINT = "s3.signer.endpoint"
6869S3_SIGNER_ENDPOINT_DEFAULT = "v1/aws/s3/sign"
Original file line number Diff line number Diff line change 6767 S3_REQUEST_TIMEOUT ,
6868 S3_SECRET_ACCESS_KEY ,
6969 S3_SESSION_TOKEN ,
70+ S3_SIGNER ,
7071 S3_SIGNER_ENDPOINT ,
7172 S3_SIGNER_ENDPOINT_DEFAULT ,
7273 S3_SIGNER_URI ,
@@ -137,7 +138,7 @@ def _s3(properties: Properties) -> AbstractFileSystem:
137138 config_kwargs = {}
138139 register_events : Dict [str , Callable [[Properties ], None ]] = {}
139140
140- if signer := properties .get ("s3.signer" ):
141+ if signer := properties .get (S3_SIGNER ):
141142 logger .info ("Loading signer %s" , signer )
142143 if signer_func := SIGNERS .get (signer ):
143144 signer_func_with_properties = partial (signer_func , properties )
You can’t perform that action at this time.
0 commit comments