Skip to content

Commit c53f2b7

Browse files
update icon to daggy
1 parent d0b45c1 commit c53f2b7

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

apps/sim/tools/dagster/launch_run.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,7 @@ export const launchRunTool: ToolConfig<DagsterLaunchRunParams, DagsterLaunchRunR
156156
}
157157
}
158158

159-
throw new Error(
160-
`${result.type}: ${dagsterUnionErrorMessage(result, 'Launch run failed')}`
161-
)
159+
throw new Error(`${result.type}: ${dagsterUnionErrorMessage(result, 'Launch run failed')}`)
162160
},
163161

164162
outputs: {

apps/sim/tools/dagster/list_runs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export const listRunsTool: ToolConfig<DagsterListRunsParams, DagsterListRunsResp
9797
}
9898

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

103103
return {

0 commit comments

Comments
 (0)