Skip to content

Commit 0216e0d

Browse files
committed
fix: saga compensator inline import('psyqueue') → import('@psyqueue/core')
1 parent 520b7a9 commit 0216e0d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/plugin-saga/src/compensator.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,15 @@ function buildCompensationContext(
8989
stepName: string,
9090
results: Record<string, unknown>,
9191
_events: EventBusInterface,
92-
): import('psyqueue').JobContext {
93-
const log: import('psyqueue').Logger = {
92+
): import('@psyqueue/core').JobContext {
93+
const log: import('@psyqueue/core').Logger = {
9494
debug: () => {},
9595
info: () => {},
9696
warn: () => {},
9797
error: () => {},
9898
}
9999

100-
const job: import('psyqueue').Job = {
100+
const job: import('@psyqueue/core').Job = {
101101
id: `compensation-${workflowId}-${stepName}`,
102102
queue: workflowId,
103103
name: stepName,

0 commit comments

Comments
 (0)