Skip to content

Commit 5fdc3e4

Browse files
committed
fix(protocol): point the default telemetry ingest at offlineprotocol.com
The build script baked analytics.offlineprotocol.io, a hostname that does not exist. Every default build queued its batches and failed each send on DNS, backing off to 15 minutes and expiring the batches unsent after six days. The ingest lives at analytics.offlineprotocol.com, the domain every other reference in the repository already uses; it resolves, serves a certificate issued for that name, and answers the events route.
1 parent 9ed705d commit 5fdc3e4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/offline-protocol/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1111
use std::env;
1212

13-
const DEFAULT_ENDPOINT: &str = "https://analytics.offlineprotocol.io/v1/events";
13+
const DEFAULT_ENDPOINT: &str = "https://analytics.offlineprotocol.com/v1/events";
1414

1515
fn main() {
1616
println!("cargo:rerun-if-env-changed=OFFLINE_TELEMETRY_ENDPOINT");

0 commit comments

Comments
 (0)