Skip to content

Commit 141cd74

Browse files
authoredJul 15, 2024
fix(shared-integration): prevent potential data race in flushTask (#3984)
1 parent 8fb6014 commit 141cd74

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎packages/shared-integration/src/context.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ export function createContext<Config extends UserConfig<any> = UserConfig<any>>(
108108
async function flushTasks() {
109109
const _tasks = [...tasks]
110110
await Promise.all(_tasks)
111-
tasks.splice(0, _tasks.length)
111+
if (tasks[0] === _tasks[0])
112+
tasks.splice(0, _tasks.length)
112113
}
113114

114115
return {

0 commit comments

Comments
 (0)