increase max revisions that can be rebased onto

This commit is contained in:
Aiden McClelland
2022-01-26 15:01:28 -07:00
committed by Keagan McClelland
parent 259d186263
commit 690324e68d

View File

@@ -218,7 +218,7 @@ pub struct PatchDb {
}
impl PatchDb {
pub async fn open<P: AsRef<Path>>(path: P) -> Result<Self, Error> {
let (subscriber, _) = tokio::sync::broadcast::channel(512); // TODO: make this unbounded
let (subscriber, _) = tokio::sync::broadcast::channel(4096); // TODO: make this unbounded
Ok(PatchDb {
store: Arc::new(RwLock::new(Store::open(path).await?)),