-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
feat(cloudflare): Flush after waitUntil
#16681
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
AbhiPrasad
merged 7 commits into
getsentry:develop
from
0xbad0c0d3:flush-after-waituntils
Jun 26, 2025
Merged
Changes from 4 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
e9fad91
Introduce `makeFlushAfterAll` utility to streamline and customize Sen…
16578ab
Add tests for ensuring `flush` is called after all `waitUntil` promis…
86f5251
Double import fix
5af2352
Refactor `flush` handling by replacing `makeFlushAfterAll` with `make…
b5e4ff6
Refactor `init` to support `ctx` option and streamline `flush` usage …
c9cd3f6
Add tests for Durable Object Sentry instrumentation
42b5b30
Add missing semicolon in CloudflareOptions interface
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import type { ExecutionContext } from '@cloudflare/workers-types'; | ||
|
||
type FlushLock = { | ||
readonly ready: Promise<void>; | ||
readonly finalize: () => Promise<void>; | ||
}; | ||
|
||
/** | ||
* Enhances the given execution context by wrapping its `waitUntil` method with a proxy | ||
* to monitor pending tasks, and provides a flusher function to ensure all tasks | ||
* have been completed before executing any subsequent logic. | ||
* | ||
* @param {ExecutionContext} context - The execution context to be enhanced. If no context is provided, the function returns undefined. | ||
* @return {FlushLock} Returns a flusher function if a valid context is provided, otherwise undefined. | ||
*/ | ||
export function makeFlushLock(context: ExecutionContext): FlushLock { | ||
let resolveAllDone: () => void = () => undefined; | ||
const allDone = new Promise<void>(res => { | ||
resolveAllDone = res; | ||
}); | ||
let pending = 0; | ||
const originalWaitUntil = context.waitUntil.bind(context) as typeof context.waitUntil; | ||
context.waitUntil = promise => { | ||
pending++; | ||
return originalWaitUntil( | ||
promise.finally(() => { | ||
if (--pending === 0) resolveAllDone(); | ||
}), | ||
); | ||
}; | ||
return Object.freeze({ | ||
ready: allDone, | ||
finalize: () => { | ||
if (pending === 0) resolveAllDone(); | ||
return allDone; | ||
}, | ||
}); | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { type ExecutionContext } from '@cloudflare/workers-types'; | ||
import { describe, expect, it, onTestFinished, vi } from 'vitest'; | ||
import { makeFlushLock } from '../src/flush'; | ||
|
||
describe('Flush buffer test', () => { | ||
const waitUntilPromises: Promise<void>[] = []; | ||
const mockExecutionContext: ExecutionContext = { | ||
waitUntil: vi.fn(prmise => { | ||
waitUntilPromises.push(prmise); | ||
}), | ||
passThroughOnException: vi.fn(), | ||
}; | ||
it('should flush buffer immediately if no waitUntil were called', async () => { | ||
const { finalize } = makeFlushLock(mockExecutionContext); | ||
await expect(finalize()).resolves.toBeUndefined(); | ||
}); | ||
it('should flush buffer only after all waitUntil were finished', async () => { | ||
vi.useFakeTimers(); | ||
onTestFinished(() => { | ||
vi.useRealTimers(); | ||
}); | ||
const task = new Promise(resolve => setTimeout(resolve, 100)); | ||
const lock = makeFlushLock(mockExecutionContext); | ||
mockExecutionContext.waitUntil(task); | ||
void lock.finalize(); | ||
vi.advanceTimersToNextTimer(); | ||
await Promise.all(waitUntilPromises); | ||
await expect(lock.ready).resolves.toBeUndefined(); | ||
}); | ||
}); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's make
ctx: ExecutionContext | void
part ofCloudflareOptions
instead of a separate arg.void
probably be replaced withctx?: ExecutionContext
as well.