We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 520b7a9 commit 0216e0dCopy full SHA for 0216e0d
1 file changed
packages/plugin-saga/src/compensator.ts
@@ -89,15 +89,15 @@ function buildCompensationContext(
89
stepName: string,
90
results: Record<string, unknown>,
91
_events: EventBusInterface,
92
-): import('psyqueue').JobContext {
93
- const log: import('psyqueue').Logger = {
+): import('@psyqueue/core').JobContext {
+ const log: import('@psyqueue/core').Logger = {
94
debug: () => {},
95
info: () => {},
96
warn: () => {},
97
error: () => {},
98
}
99
100
- const job: import('psyqueue').Job = {
+ const job: import('@psyqueue/core').Job = {
101
id: `compensation-${workflowId}-${stepName}`,
102
queue: workflowId,
103
name: stepName,
0 commit comments