refactor(server): rename Fence.waitEffect to Fence.wait (#28717)

This commit is contained in:
Kit Langton
2026-05-21 16:48:15 -04:00
committed by GitHub
parent 2c867ce1e5
commit ce71b723d6
2 changed files with 2 additions and 2 deletions
@@ -131,7 +131,7 @@ function proxyRemote(
const response = yield* HttpApiProxy.http(client, proxyURL, target.headers, request)
const sync = Fence.parse(new Headers(response.headers))
if (sync) {
const syncFailure = yield* Fence.waitEffect(
const syncFailure = yield* Fence.wait(
workspace.id,
sync,
request.source instanceof Request ? request.source.signal : undefined,