From cf3d5218f58d97d805a177834990ce9a219d25ee Mon Sep 17 00:00:00 2001 From: Kyle Scott Date: Mon, 13 Nov 2023 16:58:51 -0500 Subject: [PATCH] longer timeout --- benchmarks/src/subgraph.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/src/subgraph.ts b/benchmarks/src/subgraph.ts index 00475c306..567924145 100644 --- a/benchmarks/src/subgraph.ts +++ b/benchmarks/src/subgraph.ts @@ -94,7 +94,7 @@ const waitForSyncComplete = async () => { timeout = setTimeout(() => { clearInterval(interval); reject(new Error("Timed out waiting for subgraph to sync")); - }, 60_000); + }, 180_000); }); return duration;