Skip to content

Commit ef3699c

Browse files
committed
Fixes typo “Cancelled”
1 parent 6e78f23 commit ef3699c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ export class CompleteAttemptService extends BaseService {
213213
taskRunAttempt.friendlyId,
214214
taskRunAttempt.taskRunId,
215215
new Date(),
216-
"Cancelled by user",
216+
"Canceled by user",
217217
env
218218
);
219219

internal-packages/run-engine/src/engine/systems/runAttemptSystem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1236,7 +1236,7 @@ export class RunAttemptSystem {
12361236
tx?: PrismaClientOrTransaction;
12371237
}): Promise<ExecutionResult & { alreadyFinished: boolean }> {
12381238
const prisma = tx ?? this.$.prisma;
1239-
reason = reason ?? "Cancelled by user";
1239+
reason = reason ?? "Canceled by user";
12401240

12411241
return startSpan(this.$.tracer, "cancelRun", async (span) => {
12421242
return this.$.runLock.lock("cancelRun", [runId], async () => {

0 commit comments

Comments
 (0)