From 30f3d7ce89c975f47f81b86c345a9c560db1ec0d Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Mon, 19 May 2025 17:46:08 -0700 Subject: [PATCH 1/2] discovery: lower bandwidth rate limiting log to Debugf --- discovery/sync_manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discovery/sync_manager.go b/discovery/sync_manager.go index b1cb208cd..65e0774a4 100644 --- a/discovery/sync_manager.go +++ b/discovery/sync_manager.go @@ -582,7 +582,7 @@ func (m *SyncManager) waitMsgDelay(ctx context.Context, peerPub [33]byte, // to be sent. delay := limitReservation.Delay() if delay > 0 { - log.Infof("GossipSyncer(%x): rate limiting gossip replies, "+ + log.Debugf("GossipSyncer(%x): rate limiting gossip replies, "+ "responding in %s", peerPub, delay) select { From 2b76e2fbd5005540badb074f0d8b407cc9af69fa Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Mon, 19 May 2025 17:46:22 -0700 Subject: [PATCH 2/2] build: bump version to 0.19.0 --- build/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/version.go b/build/version.go index dd8438bac..88bf90357 100644 --- a/build/version.go +++ b/build/version.go @@ -51,7 +51,7 @@ const ( // AppPreRelease MUST only contain characters from semanticAlphabet per // the semantic versioning spec. - AppPreRelease = "beta.rc5" + AppPreRelease = "beta" ) func init() {