Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Result tile wait_all should block on the async i/o result (#5446)
As @ihnorton has noticed while auditing the code in #5401 , in result tile destructor we were waiting on `data()` instead of `filtered_data()` for the async task to have finished. This was a leftover from the previous version of the code (before the split between part 1 and 2), where we were also unfiltering in an async fashion, so `data()` was also blocking waiting for the unfiltering shared future to be done. This PR fixes this by waiting just for the I/O task to be done. --- TYPE: IMPROVEMENT DESC: Result tile wait_all should block on the async I/O result
- Loading branch information