From f86e1d916df2f3bb6ece2948ab9a9316e6b98611 Mon Sep 17 00:00:00 2001 From: Benjie Gillam Date: Thu, 23 Feb 2023 15:26:50 +0000 Subject: [PATCH] Shorter wait --- postgraphile/postgraphile/graphile.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgraphile/postgraphile/graphile.config.ts b/postgraphile/postgraphile/graphile.config.ts index 8c1b27709..c36d229a8 100644 --- a/postgraphile/postgraphile/graphile.config.ts +++ b/postgraphile/postgraphile/graphile.config.ts @@ -82,7 +82,7 @@ const preset: GraphileConfig.Preset = { async function* subscribe() { for (let i = 0; i < 10; i++) { yield i; - await sleep(1000); + await sleep(300); } }, [sleep],