We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7fe469 commit 3e59d41Copy full SHA for 3e59d41
node/src/main.rs
@@ -348,6 +348,9 @@ fn async_main() -> impl Future<Item = (), Error = ()> + Send + 'static {
348
.parse()
349
.expect("Invalid store connection pool size value");
350
351
+ // Minimum of two connections needed for the pool in order for the Store to bootstrap
352
+ assert!(store_conn_pool_size > 1);
353
+
354
// Set up Sentry, with release tracking and panic handling;
355
// fall back to an empty URL, which will result in no errors being reported
356
let sentry_url = env::var_os("THEGRAPH_SENTRY_URL").unwrap_or_else(|| "".into());
0 commit comments