You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(node): Enforce that ContextLines integration does not leave open file handles (#14995)
The ContextLines integration uses readable streams to more memory
efficiently read files that it uses to attach source context to outgoing
events. See more details here:
#12221
Unfortunately, if we don't explicitly destroy the stream after creating
and using it, it won't get closed, even when we remove the readline
interface that uses the stream (which actual does the reading of files).
To fix this, we adjust the resolve logic when getting file context to
destroy the stream, as we anyway are done with the readline interface.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@
10
10
11
11
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
12
12
13
-
Work in this release was contributed by @nwalters512, @aloisklink, @arturovt, @benjickand @maximepvrt. Thank you for your contributions!
13
+
Work in this release was contributed by @nwalters512, @aloisklink, @arturovt, @benjick, @maximepvrt, and @mstrokin. Thank you for your contributions!
14
14
15
15
-**feat(solidstart)!: Default to `--import` setup and add `autoInjectServerSentry` ([#14862](https://github.com/getsentry/sentry-javascript/pull/14862))**
0 commit comments