fix(examples): exit langchain example to prevent NAPI event loop hang#786
Merged
fix(examples): exit langchain example to prevent NAPI event loop hang#786
Conversation
The native NAPI tokio runtime keeps the Node event loop alive, causing the CI step to hang indefinitely.
yonas
pushed a commit
to yonasBSD/bashkit
that referenced
this pull request
Mar 23, 2026
## Summary Release v0.1.13 — patch release with 5 PRs since v0.1.12. ### Highlights - **First contribution from @achicu!** Fixed `find` with multiple paths silently discarding results when one path is missing (everruns#781) - **Python/Node binding parity** — both bindings now expose the same API surface (everruns#785) - **Live mount/unmount** on running `Bash` instances for dynamic filesystem composition (everruns#784) ### What's Changed * fix(examples): exit langchain example to prevent NAPI event loop hang (everruns#786) by @chaliy * feat(bindings): add Python/Node binding parity (everruns#785) by @chaliy * feat(fs): expose live mount/unmount on running Bash instance (everruns#784) by @chaliy * chore: add cargo-vet exemptions for jni-sys 0.3.1, 0.4.1 and jni-sys-macros 0.4.1 (everruns#783) by @chaliy * fix: find with multiple paths no longer discards results on missing path (everruns#781) by @achicu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
process.exit(0)at the end oflangchain_integration.mjsto prevent the native NAPI tokio runtime from keeping the Node event loop alive indefinitelyTest plan