Fokko opened a new pull request, #423:
URL: https://github.com/apache/iceberg-python/pull/423

   ```bash
   export PYICEBERG_CATALOG__SOMETHING__S3__REGION=eu-north-1
   ```
   
   Before:
   
   ```python
   >>> from pyiceberg.catalog import load_catalog
   >>> load_catalog('something').properties
   {'s3': {'region': 'eu-north-1'}, ...}
   ```
   
   After:
   
   ```python
   >>> from pyiceberg.catalog import load_catalog
   >>> load_catalog('something').properties
   {'s3.region': 'eu-north-1', ...}
   ```
   
   Which correspondents with the key `s3.region` that we use.


-- 
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

Reply via email to