REPL locks up when creating a weave without resuming it #287
Labels
No labels
bug
dependencies
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
refactor
rust
technical-debt
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
navicore/patch-seq#287
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
Running a weave creation in the REPL without immediately resuming it causes the REPL to lock up unrecoverably:
Expected Behavior
Either:
Actual Behavior
Root Cause (suspected)
The strand likely blocks on a channel operation waiting for a resume that never comes. The signal handler may not be able to interrupt blocked channel operations.
Environment
Notes
This is a REPL-specific issue. The weave infrastructure works correctly in compiled programs where the control flow ensures proper resume/cancel patterns.
https://github.com/navicore/patch-seq/pull/289