Commit 436fd95
committed
fix: correct queue_forward_handle cleanup scope
Fix compilation error where queue_forward_handle cleanup was attempted
in the wrong function scope. The handle is now properly cleaned up in
execute_loop_inner where it is defined, following Rust's RAII principles.
Changes:
- Move handle.abort() call to execute_loop_inner function
- Remove incorrect cleanup attempt from execute_plan function
- Ensure handle is cleaned up before function returns
This fixes the scope error:
error[E0425]: cannot find value `queue_forward_handle` in this scope
Test results:
- Unit tests: 1407 passed, 0 failed
- Integration tests: pending
- Build: success
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent c4d8f7d commit 436fd95
1 file changed
Lines changed: 5 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3082 | 3082 | | |
3083 | 3083 | | |
3084 | 3084 | | |
| 3085 | + | |
| 3086 | + | |
| 3087 | + | |
| 3088 | + | |
| 3089 | + | |
3085 | 3090 | | |
3086 | 3091 | | |
3087 | 3092 | | |
| |||
4309 | 4314 | | |
4310 | 4315 | | |
4311 | 4316 | | |
4312 | | - | |
4313 | | - | |
4314 | | - | |
4315 | | - | |
4316 | | - | |
4317 | 4317 | | |
4318 | 4318 | | |
4319 | 4319 | | |
| |||
0 commit comments