This is an automated email from the ASF dual-hosted git repository. kevinjqliu pushed a commit to branch christophediprima/main in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
commit 0aace0f4301050b9c19a2ffcd4330b8a57d182c9 Author: dip <[email protected]> AuthorDate: Fri Feb 14 17:02:49 2025 +0100 support wasb and wasbs --- pyiceberg/io/fsspec.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyiceberg/io/fsspec.py b/pyiceberg/io/fsspec.py index 6f44501e..4a6db906 100644 --- a/pyiceberg/io/fsspec.py +++ b/pyiceberg/io/fsspec.py @@ -306,6 +306,8 @@ SCHEME_TO_FS = { "s3n": _s3, "abfs": _adls, "abfss": _adls, + "wasb": _adls, + "wasbs": _adls, "gs": _gs, "gcs": _gs, "hf": _hf,
