Fix/sdk stream root fallback (#2874)

This commit is contained in:
bharath kumar
2026-01-25 12:23:26 +05:30
committed by GitHub
parent 409388365e
commit b143027d95
3 changed files with 71 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"@trigger.dev/sdk": patch
---
Aligned the SDK's `getRunIdForOptions` logic with the Core package to handle semantic targets (`root`, `parent`) in root tasks.
@@ -0,0 +1,64 @@
import { describe, it, expect, vi, beforeEach } from "vitest";
import { streams } from "./streams.js";
import { taskContext, realtimeStreams } from "@trigger.dev/core/v3";
vi.mock("@trigger.dev/core/v3", async (importOriginal) => {
const original = await importOriginal<typeof import("@trigger.dev/core/v3")>();
return {
...original,
taskContext: {
ctx: {
run: {
id: "run_123",
// parentTaskRunId and rootTaskRunId are undefined for root tasks
},
},
},
realtimeStreams: {
pipe: vi.fn().mockReturnValue({
wait: () => Promise.resolve(),
stream: new ReadableStream(),
}),
},
};
});
describe("streams.pipe consistency", () => {
beforeEach(() => {
vi.clearAllMocks();
});
it("should not throw and should use self runId when target is 'root' in a root task", async () => {
const mockStream = new ReadableStream();
// This should not throw anymore
const { waitUntilComplete } = streams.pipe("test-key", mockStream, {
target: "root",
});
expect(realtimeStreams.pipe).toHaveBeenCalledWith(
"test-key",
mockStream,
expect.objectContaining({
target: "run_123",
})
);
});
it("should not throw and should use self runId when target is 'parent' in a root task", async () => {
const mockStream = new ReadableStream();
// This should not throw anymore
const { waitUntilComplete } = streams.pipe("test-key", mockStream, {
target: "parent",
});
expect(realtimeStreams.pipe).toHaveBeenCalledWith(
"test-key",
mockStream,
expect.objectContaining({
target: "run_123",
})
);
});
});
+2 -2
View File
@@ -665,11 +665,11 @@ export const streams = {
function getRunIdForOptions(options?: RealtimeStreamOperationOptions): string | undefined {
if (options?.target) {
if (options.target === "parent") {
return taskContext.ctx?.run?.parentTaskRunId;
return taskContext.ctx?.run?.parentTaskRunId ?? taskContext.ctx?.run?.id;
}
if (options.target === "root") {
return taskContext.ctx?.run?.rootTaskRunId;
return taskContext.ctx?.run?.rootTaskRunId ?? taskContext.ctx?.run?.id;
}
if (options.target === "self") {