Increase window size (#1578)

Addresses the following problem
- Validators are not able to keep up with the leader
- The future blobs (outside of window) get dropped
- The validators won't process repair requests for these future blobs
This commit is contained in:
Pankaj Garg
2018-10-23 10:25:01 -07:00
committed by GitHub
parent ce934a547e
commit bbb38ac106

View File

@ -17,7 +17,7 @@ use std::net::SocketAddr;
use std::sync::atomic::AtomicUsize;
use std::sync::{Arc, RwLock};
pub const WINDOW_SIZE: u64 = 2 * 1024;
pub const WINDOW_SIZE: u64 = 32 * 1024;
#[derive(Default, Clone)]
pub struct WindowSlot {