Skip to content

Commit 2295d76

Browse files
committed
debug race condition
1 parent 77f2938 commit 2295d76

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/zarr/core/array.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,10 @@ async def _save_metadata(self, metadata: ArrayMetadata, ensure_parents: bool = F
651651
]
652652
)
653653

654-
await gather(*awaitables)
654+
for awaitable in awaitables:
655+
await awaitable
656+
657+
# await gather(*awaitables)
655658

656659
async def _set_selection(
657660
self,

0 commit comments

Comments
 (0)