-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A glance at the [actions](https://github.com/acquire-project/acquire-driver-zarr/actions) lately shows that all testing is timing out on Windows only, and on `test-get-meta` only. I can't reproduce this on my machine, but I suspect this is because threads are being shut down before they have a chance to properly start, since we're not actually doing anything with them in that test, so they're getting left in a bad state where they're joinable but we can't join them. So instead of spinning up threads on the thread pool's construction, I do it in `Zarr::start`. That seems to fix the problem.
- Loading branch information
Showing
3 changed files
with
28 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters