-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix uncaught "resource closed" in http server instrumentation (#3)
* Try fixing uncaught 'resource closed' * Log another potential error site * Revert "Log another potential error site" This reverts commit 2d352f5. * Improve how we report response stream errors * Add --allow-sys to bundle-opentelemetry.ts * Use specific versions of the bundle toolchain * does this help? * how about that * why am i struggling with submodules
- Loading branch information
Showing
2 changed files
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
#!/usr/bin/env -S deno run --allow-run --allow-read --allow-write=. --allow-env | ||
#!/usr/bin/env -S deno run --allow-run --allow-read --allow-write=. --allow-env --allow-sys --allow-ffi | ||
|
||
// pass --refresh-yarn to force rerunning yarn on the opentelemetry packages | ||
|
||
import { rollup, Plugin } from 'npm:rollup'; | ||
import { nodeResolve } from 'npm:@rollup/plugin-node-resolve'; | ||
import commonjs from 'npm:@rollup/plugin-commonjs'; | ||
import sourcemaps from 'npm:rollup-plugin-sourcemaps'; | ||
import cleanup from 'npm:rollup-plugin-cleanup'; | ||
import { rollup, Plugin } from 'npm:rollup@4.17.2'; | ||
import { nodeResolve } from 'npm:@rollup/plugin-node-resolve@15.2.3'; | ||
import commonjs from 'npm:@rollup/plugin-commonjs@25.0.7'; | ||
import sourcemaps from 'npm:rollup-plugin-sourcemaps@0.6.3'; | ||
import cleanup from 'npm:rollup-plugin-cleanup@3.2.1'; | ||
import dts from 'npm:[email protected]'; | ||
// import { terser } from "npm:rollup-plugin-terser"; | ||
|
||
|
This file contains 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