diff options
author | 2023-09-29 21:49:59 -0300 | |
---|---|---|
committer | 2023-09-29 21:49:59 -0300 | |
commit | 28450dbd911917c1efb7b237b74c6794b4584cbd (patch) | |
tree | 44cf7edd873f9db9b8151238e54ef5db4f8d6c2e | |
parent | 56ca927ea34ae914a5707b595af5ae7d23aa6472 (diff) | |
download | bun-28450dbd911917c1efb7b237b74c6794b4584cbd.tar.gz bun-28450dbd911917c1efb7b237b74c6794b4584cbd.tar.zst bun-28450dbd911917c1efb7b237b74c6794b4584cbd.zip |
merge fix
-rw-r--r-- | src/http_client_async.zig | 2 | ||||
-rw-r--r-- | src/js/out/ResolvedSourceTag.zig | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/http_client_async.zig b/src/http_client_async.zig index f8645da7e..ba2210867 100644 --- a/src/http_client_async.zig +++ b/src/http_client_async.zig @@ -1156,7 +1156,7 @@ pub fn onEnd( return; } } - client.closeAndFail(error.ConnectionClosed); + client.fail(error.ConnectionClosed); } pub inline fn getAllocator() std.mem.Allocator { diff --git a/src/js/out/ResolvedSourceTag.zig b/src/js/out/ResolvedSourceTag.zig index 90dae2b81..4c2a99065 100644 --- a/src/js/out/ResolvedSourceTag.zig +++ b/src/js/out/ResolvedSourceTag.zig @@ -73,7 +73,7 @@ pub const ResolvedSourceTag = enum(u32) { @"vercel_fetch" = 572, @"ws" = 573, // Native modules run through a different system using ESM registry. - bun = 1024, + @"bun" = 1024, @"bun:jsc" = 1025, @"node:buffer" = 1026, @"node:constants" = 1027, |