Merge pull request #4947 from stacks-network/release-to-master-1720025568

merge release/2.5.0.0.5 to master
This commit is contained in:
wileyj
2024-07-03 13:12:29 -07:00
committed by GitHub
2 changed files with 8 additions and 1 deletions

View File

@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to the versioning scheme outlined in the [README.md](README.md).
## [2.5.0.0.5]
### Added
- Added configuration option `connections.antientropy_retry` (#4932)
### Changed
- Set default antientropy_retry to run once per hour (#4935)
## [2.5.0.0.4]
### Added

View File

@@ -479,7 +479,7 @@ impl std::default::Default for ConnectionOptions {
public_ip_max_retries: 3, // maximum number of retries before self-throttling for $public_ip_timeout
max_block_push: 10, // maximum number of blocksData messages to push out via our anti-entropy protocol
max_microblock_push: 10, // maximum number of microblocks messages to push out via our anti-entropy protocol
antientropy_retry: 60, // retry pushing data once every minute
antientropy_retry: 3600, // retry pushing data once every hour
antientropy_public: true, // run antientropy even if we're NOT NAT'ed
max_buffered_blocks_available: 1,
max_buffered_microblocks_available: 1,