substrate-ai 0.19.22 → 0.19.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +2 -2
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -7493,8 +7493,8 @@ async function runCancelAction(options) {
|
|
|
7493
7493
|
await initSchema(adapter);
|
|
7494
7494
|
const runningRuns = await getRunningPipelineRuns(adapter);
|
|
7495
7495
|
for (const run of runningRuns) {
|
|
7496
|
-
await updatePipelineRun(adapter, run.id, { status: "
|
|
7497
|
-
if (outputFormat === "human") process.stdout.write(`Marked pipeline run ${run.id} as
|
|
7496
|
+
await updatePipelineRun(adapter, run.id, { status: "stopped" });
|
|
7497
|
+
if (outputFormat === "human") process.stdout.write(`Marked pipeline run ${run.id} as stopped.\n`);
|
|
7498
7498
|
}
|
|
7499
7499
|
} finally {
|
|
7500
7500
|
await adapter.close();
|