@versori/run 0.4.0-alpha.10 → 0.4.0-alpha.11
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.
|
@@ -293,7 +293,7 @@ export class DurableInterpreter {
|
|
|
293
293
|
Deno.addSignalListener('SIGINT', registration.sigintListener);
|
|
294
294
|
registration.subscription = registration.trigger$
|
|
295
295
|
.pipe(tap((ctx) => {
|
|
296
|
-
ctx.log.info('DurableInterpreter.executionStarted', {
|
|
296
|
+
ctx.log.info('DurableInterpreter.executionStarted', {});
|
|
297
297
|
}), mergeMap((ctx) => of(ctx).pipe(registration.task$, catchError((err) => {
|
|
298
298
|
ctx.log.error('DurableInterpreter.executionError', {
|
|
299
299
|
error: err instanceof Error ? err.toString() : err,
|
|
@@ -273,7 +273,7 @@ export class MemoryInterpreter {
|
|
|
273
273
|
Deno.addSignalListener('SIGINT', registration.sigintListener);
|
|
274
274
|
registration.subscription = registration.trigger$
|
|
275
275
|
.pipe(tap((ctx) => {
|
|
276
|
-
ctx.log.info('MemoryInterpreter.executionStarted', {
|
|
276
|
+
ctx.log.info('MemoryInterpreter.executionStarted', {});
|
|
277
277
|
}), mergeMap((ctx) => of(ctx).pipe(registration.task$, catchError((err) => {
|
|
278
278
|
ctx.log.error('MemoryInterpreter.executionError', {
|
|
279
279
|
error: err instanceof Error ? err.toString() : err,
|
package/package.json
CHANGED
|
@@ -299,7 +299,7 @@ class DurableInterpreter {
|
|
|
299
299
|
Deno.addSignalListener('SIGINT', registration.sigintListener);
|
|
300
300
|
registration.subscription = registration.trigger$
|
|
301
301
|
.pipe((0, rxjs_1.tap)((ctx) => {
|
|
302
|
-
ctx.log.info('DurableInterpreter.executionStarted', {
|
|
302
|
+
ctx.log.info('DurableInterpreter.executionStarted', {});
|
|
303
303
|
}), (0, rxjs_1.mergeMap)((ctx) => (0, rxjs_1.of)(ctx).pipe(registration.task$, (0, rxjs_1.catchError)((err) => {
|
|
304
304
|
ctx.log.error('DurableInterpreter.executionError', {
|
|
305
305
|
error: err instanceof Error ? err.toString() : err,
|
|
@@ -279,7 +279,7 @@ class MemoryInterpreter {
|
|
|
279
279
|
Deno.addSignalListener('SIGINT', registration.sigintListener);
|
|
280
280
|
registration.subscription = registration.trigger$
|
|
281
281
|
.pipe((0, rxjs_1.tap)((ctx) => {
|
|
282
|
-
ctx.log.info('MemoryInterpreter.executionStarted', {
|
|
282
|
+
ctx.log.info('MemoryInterpreter.executionStarted', {});
|
|
283
283
|
}), (0, rxjs_1.mergeMap)((ctx) => (0, rxjs_1.of)(ctx).pipe(registration.task$, (0, rxjs_1.catchError)((err) => {
|
|
284
284
|
ctx.log.error('MemoryInterpreter.executionError', {
|
|
285
285
|
error: err instanceof Error ? err.toString() : err,
|