Commit d8bbb8b
authored
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 result1 parent 1d9705d commit d8bbb8b
2 files changed
+7
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
281 | 281 | | |
282 | 282 | | |
283 | 283 | | |
284 | | - | |
| 284 | + | |
| 285 | + | |
285 | 286 | | |
286 | | - | |
| 287 | + | |
| 288 | + | |
287 | 289 | | |
288 | 290 | | |
289 | | - | |
| 291 | + | |
| 292 | + | |
290 | 293 | | |
291 | 294 | | |
292 | 295 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
280 | 280 | | |
281 | 281 | | |
282 | 282 | | |
283 | | - | |
| 283 | + | |
284 | 284 | | |
285 | 285 | | |
286 | 286 | | |
| |||
0 commit comments