diff options
author | 2021-10-05 17:50:05 -0700 | |
---|---|---|
committer | 2021-10-05 17:50:05 -0700 | |
commit | bd14ad9e6ed9343acc21483c0c44cf0b81d8bae6 (patch) | |
tree | c2e2f956c5c4836bff195aaa6ec6544f7f13ecdf /src/env.zig | |
parent | 9507cd8ed6ec1f7575a850333f73f006309feac8 (diff) | |
download | bun-bd14ad9e6ed9343acc21483c0c44cf0b81d8bae6.tar.gz bun-bd14ad9e6ed9343acc21483c0c44cf0b81d8bae6.tar.zst bun-bd14ad9e6ed9343acc21483c0c44cf0b81d8bae6.zip |
Async analytics works now
Requests are ~60 bytes and the thread mostly sleeps, so it should be pretty low overhead overall.
Diffstat (limited to '')
-rw-r--r-- | src/env.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/env.zig b/src/env.zig index 8df580cdc..351b295b2 100644 --- a/src/env.zig +++ b/src/env.zig @@ -23,4 +23,4 @@ pub const isTest = std.builtin.is_test; pub const isLinux = std.Target.current.os.tag == .linux; pub const isAarch64 = std.Target.current.cpu.arch == .aarch64; -pub const analytics_url = "http://localhost:3008/events"; +pub const analytics_url = "http://localhost:4000/events"; |