Skip to content

Commit b4d0db3

Browse files
committed
Clean imports
1 parent 62cf5ac commit b4d0db3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { startSpan } from "@internal/tracing";
22
import { assertExhaustive } from "@trigger.dev/core";
3-
import { DequeuedMessage, RetryOptions, tryCatch } from "@trigger.dev/core/v3";
3+
import { DequeuedMessage, RetryOptions } from "@trigger.dev/core/v3";
44
import { getMaxDuration } from "@trigger.dev/core/v3/isomorphic";
55
import { PrismaClientOrTransaction } from "@trigger.dev/database";
66
import { getRunWithBackgroundWorkerTasks } from "../db/worker.js";
@@ -9,7 +9,7 @@ import { getMachinePreset } from "../machinePresets.js";
99
import { isDequeueableExecutionStatus } from "../statuses.js";
1010
import { RunEngineOptions } from "../types.js";
1111
import { ExecutionSnapshotSystem, getLatestExecutionSnapshot } from "./executionSnapshotSystem.js";
12-
import { RunAttemptSystem, safeParseGitMeta } from "./runAttemptSystem.js";
12+
import { RunAttemptSystem } from "./runAttemptSystem.js";
1313
import { SystemResources } from "./systems.js";
1414

1515
export type DequeueSystemOptions = {

0 commit comments

Comments
 (0)