Skip to content

Commit 47db1d0

Browse files
authored
Merge pull request #4947 from stacks-network/release-to-master-1720025568
merge release/2.5.0.0.5 to master
2 parents f938baf + e29ef68 commit 47db1d0

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to the versioning scheme outlined in the [README.md](README.md).
77

8+
## [2.5.0.0.5]
9+
### Added
10+
- Added configuration option `connections.antientropy_retry` (#4932)
11+
### Changed
12+
- Set default antientropy_retry to run once per hour (#4935)
13+
14+
815
## [2.5.0.0.4]
916

1017
### Added

stackslib/src/net/connection.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ impl std::default::Default for ConnectionOptions {
479479
public_ip_max_retries: 3, // maximum number of retries before self-throttling for $public_ip_timeout
480480
max_block_push: 10, // maximum number of blocksData messages to push out via our anti-entropy protocol
481481
max_microblock_push: 10, // maximum number of microblocks messages to push out via our anti-entropy protocol
482-
antientropy_retry: 60, // retry pushing data once every minute
482+
antientropy_retry: 3600, // retry pushing data once every hour
483483
antientropy_public: true, // run antientropy even if we're NOT NAT'ed
484484
max_buffered_blocks_available: 1,
485485
max_buffered_microblocks_available: 1,

0 commit comments

Comments
 (0)