Skip to content

Commit dd2933d

Browse files
committed
"Task run is not in a cancellable state" isn't an error, it's expected
1 parent 38518b6 commit dd2933d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/webapp/app/v3/services/cancelTaskRunV1.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export class CancelTaskRunServiceV1 extends BaseService {
4343

4444
// Make sure the task run is in a cancellable state
4545
if (!isCancellableRunStatus(taskRun.status)) {
46-
logger.error("Task run is not in a cancellable state", {
46+
logger.info("Task run is not in a cancellable state", {
4747
runId: taskRun.id,
4848
status: taskRun.status,
4949
});

0 commit comments

Comments
 (0)