From 690324e68d74343e0d166509d9a15ff095689e32 Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Wed, 26 Jan 2022 15:01:28 -0700 Subject: [PATCH] increase max revisions that can be rebased onto --- patch-db/src/store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patch-db/src/store.rs b/patch-db/src/store.rs index 42bd4ae..8bbeeab 100644 --- a/patch-db/src/store.rs +++ b/patch-db/src/store.rs @@ -218,7 +218,7 @@ pub struct PatchDb { } impl PatchDb { pub async fn open>(path: P) -> Result { - 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?)),