Isolate std I/O streams during tactic execution #230
Labels
No Label
category
bug
category
chore
category
doc
category
feature
category
optimization
category
organization
part/Delation
part/Elab
part/Environment
part/FFI
part/Frontend
part/Goal
part/REPL
part/Serial
priority
high
priority
irrelevant
priority
low
priority
medium
priority
pending-measurement
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Depends on
#231 feat(repl): Replace StdIO when executing IO-based monads
aniva/Pantograph
Reference: aniva/Pantograph#230
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
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?
This is to prevent stray outputs from jamming the repl. The relevant function is this one (
IO.FS.withIsolatedStreams
):I don't think its necessary to modify our current protocol to accomodate for such stray outputs. They should only exist in exceptional circumstances. For this reason, redirecting stdout to stderr is appropriate.
To verify:
where the input
.jsonl
isPreviously, such operation would jam the repl.
I have not tested it, but jamming stdin may be another issue.