Skip to content

Commit 17d9670

Browse files
authored
disable conditional writes (#1368)
1 parent 9d65d3f commit 17d9670

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

webknossos/Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ For upgrade instructions, please check the respective _Breaking Changes_ section
1717
### Added
1818

1919
### Changed
20+
- Disabled conditional writes for S3 buckets in tensorstore. [#1368](https://github.com/scalableminds/webknossos-libs/pull/1368)
2021

2122
### Fixed
2223
- Fixed that some operations that need an authentication token didn’t ask for it but just failed. [#1366](https://github.com/scalableminds/webknossos-libs/pull/1366)

webknossos/webknossos/dataset/_array.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -547,6 +547,7 @@ def _make_kvstore(path: UPath) -> str | dict[str, str | list[str]]:
547547
"driver": "s3",
548548
"path": parsed_url.path.lstrip("/"),
549549
"bucket": parsed_url.netloc,
550+
"use_conditional_write": False,
550551
}
551552
if endpoint_url := path.storage_options.get("client_kwargs", {}).get(
552553
"endpoint_url", None

0 commit comments

Comments
 (0)