Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update icon to daggy
  • Loading branch information
abhinavDhulipala authored and waleedlatif1 committed Apr 7, 2026
commit 8da2ee02d6849190de92182e5b5b612a31ba696f
4 changes: 1 addition & 3 deletions apps/sim/tools/dagster/launch_run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,7 @@ export const launchRunTool: ToolConfig<DagsterLaunchRunParams, DagsterLaunchRunR
}
}

throw new Error(
`${result.type}: ${dagsterUnionErrorMessage(result, 'Launch run failed')}`
)
throw new Error(`${result.type}: ${dagsterUnionErrorMessage(result, 'Launch run failed')}`)
},

outputs: {
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/tools/dagster/list_runs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const listRunsTool: ToolConfig<DagsterListRunsParams, DagsterListRunsResp
}

const hasFilter = Object.keys(filter).length > 0
const variables: Record<string, unknown> = { limit: params.limit ?? 20 }
const variables: Record<string, unknown> = { limit: params.limit || 20 }
if (hasFilter) variables.filter = filter

return {
Expand Down