lopata 0.8.2 → 0.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/bindings/workflow.ts +1 -1
package/package.json
CHANGED
package/src/bindings/workflow.ts
CHANGED
|
@@ -1154,7 +1154,7 @@ export class SqliteWorkflowBinding {
|
|
|
1154
1154
|
;(async () => {
|
|
1155
1155
|
let workflowTraceId: string | undefined
|
|
1156
1156
|
try {
|
|
1157
|
-
const instance = new workflowClass({}, env)
|
|
1157
|
+
const instance = new workflowClass({ waitUntil: () => {} }, env)
|
|
1158
1158
|
const step = new WorkflowStepImpl(abortController.signal, db, id, resolvedLimits, resolvedClock)
|
|
1159
1159
|
const event = { payload: params, timestamp: new Date(createdAt ?? resolvedClock.now()), instanceId: id }
|
|
1160
1160
|
const result = await startSpan({
|