diff options
| author | 2022-09-11 13:37:17 -0700 | |
|---|---|---|
| committer | 2022-09-11 13:37:17 -0700 | |
| commit | 9a5aa059f91ecf14b5dfd28ec610df6d8373b5a1 (patch) | |
| tree | b96909744baddf65bc4175c40bcc0d9d1658dbb1 /src/bun.js/event_loop.zig | |
| parent | 8b91360a33b782af423c85f9ec7277394e27beb4 (diff) | |
| download | bun-9a5aa059f91ecf14b5dfd28ec610df6d8373b5a1.tar.gz bun-9a5aa059f91ecf14b5dfd28ec610df6d8373b5a1.tar.zst bun-9a5aa059f91ecf14b5dfd28ec610df6d8373b5a1.zip | |
New HTTP client (#1231)
* wip
* It mostly works!
* Support `bun install`
* Support `bun create`
* Support chunked transfer encoding
* Handle Keep Alive when redirecting to a different domain
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Diffstat (limited to 'src/bun.js/event_loop.zig')
| -rw-r--r-- | src/bun.js/event_loop.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/event_loop.zig b/src/bun.js/event_loop.zig index 54a5af1a8..51d55d2e0 100644 --- a/src/bun.js/event_loop.zig +++ b/src/bun.js/event_loop.zig @@ -486,7 +486,7 @@ pub const EventLoop = struct { } if (this.ready_tasks_count.fetchAdd(1, .Monotonic) == 0) { - if (this.waker) |waker| { + if (this.waker) |*waker| { waker.wake() catch unreachable; } } |
