gruuya commented on code in PR #2071: URL: https://github.com/apache/iceberg-python/pull/2071#discussion_r2137128904
########## pyiceberg/catalog/rest/__init__.py: ########## @@ -390,11 +392,17 @@ class SigV4Adapter(HTTPAdapter): def __init__(self, **properties: str): super().__init__() self._properties = properties + self._boto_session = boto3.Session( + region_name=get_first_property_value(self._properties, AWS_REGION), + botocore_session=self._properties.get(BOTOCORE_SESSION), + aws_access_key_id=get_first_property_value(self._properties, AWS_ACCESS_KEY_ID), + aws_secret_access_key=get_first_property_value(self._properties, AWS_SECRET_ACCESS_KEY), + aws_session_toxken=get_first_property_value(self._properties, AWS_SESSION_TOKEN), Review Comment: ```suggestion aws_session_token=get_first_property_value(self._properties, AWS_SESSION_TOKEN), ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org