We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37d6e8a commit 033c61aCopy full SHA for 033c61a
references/v3-catalog/src/trigger/tags.ts
@@ -46,6 +46,11 @@ export const triggerRunsWithTags = task({
46
{ message: "tasks.trigger from triggerRunsWithTags" },
47
{ tags: payload.tags }
48
);
49
+ await tasks.triggerAndWait<typeof simpleChildTask>(
50
+ "simple-child-task",
51
+ { message: "tasks.triggerAndWait from triggerRunsWithTags" },
52
+ { tags: payload.tags }
53
+ );
54
await tasks.batchTrigger<typeof simpleChildTask>("simple-child-task", [
55
{
56
payload: { message: "tasks.batchTrigger 1 from triggerRunsWithTags" },
0 commit comments