From 81c603ea8d3f5aa92579acf9b6e254a64a6bf435 Mon Sep 17 00:00:00 2001 From: Pearce Kieser <5055971+Pearcekieser@users.noreply.github.com> Date: Sun, 31 May 2026 01:40:47 -0400 Subject: [PATCH] fix: extend effect rpc ping timeout --- patches/effect@4.0.0-beta.73.patch | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/patches/effect@4.0.0-beta.73.patch b/patches/effect@4.0.0-beta.73.patch index e4bd08b186d..9561649b006 100644 --- a/patches/effect@4.0.0-beta.73.patch +++ b/patches/effect@4.0.0-beta.73.patch @@ -267,7 +267,8 @@ index 811a8a8..f9cf2eb 100644 recievedPong = false; - return writePing; + return (hooks?.onPing ?? Effect.void).pipe(Effect.andThen(writePing)); - }).pipe(Effect.delay("5 seconds"), Effect.ignore, Effect.forever, Effect.interruptible, Effect.forkScoped); +- }).pipe(Effect.delay("5 seconds"), Effect.ignore, Effect.forever, Effect.interruptible, Effect.forkScoped); ++ }).pipe(Effect.delay("60 seconds"), Effect.ignore, Effect.forever, Effect.interruptible, Effect.forkScoped); return { timeout: latch.await, @@ -820,6 +849,11 @@ export const makeProtocolWorker = options => Protocol.make(Effect.fnUntraced(fun