Skip to content

Commit 413643f

Browse files
committed
client: increase default latency probe interval from 30s to 5m
1 parent de9b985 commit 413643f

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ All notable changes to this project will be documented in this file.
1313
- Add optional `owner` field to `UpdateMulticastGroup` instruction, allowing foundation members to reassign ownership of a multicast group ([#3527](https://github.com/malbeclabs/doublezero/pull/3527))
1414
- CLI
1515
- Add `--owner` flag to `multicast group update`, accepting a pubkey or `me` ([#3527](https://github.com/malbeclabs/doublezero/pull/3527))
16+
- Client
17+
- Reduce default probing interval to 5m from 30s since DZDs don't generally move.
1618

1719
## [v0.17.0](https://github.com/malbeclabs/doublezero/compare/client/v0.16.0...client/v0.17.0) - 2026-04-10
1820

client/doublezerod/cmd/doublezerod/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var (
2929
env = flag.String("env", config.EnvTestnet, "environment to use")
3030
programId = flag.String("program-id", "", "override smartcontract program id to monitor")
3131
rpcEndpoint = flag.String("solana-rpc-endpoint", "", "override solana rpc endpoint url")
32-
probeInterval = flag.Int("probe-interval", 30, "latency probe interval in seconds")
32+
probeInterval = flag.Int("probe-interval", 300, "latency probe interval in seconds")
3333
cacheUpdateInterval = flag.Int("cache-update-interval", 30, "latency cache update interval in seconds")
3434
enableVerboseLogging = flag.Bool("v", false, "enables verbose logging")
3535
enableLatencyMetrics = flag.Bool("enable-latency-metrics", false, "enables latency metrics")

0 commit comments

Comments
 (0)