@things-factory/integration-base 6.2.103 → 6.2.111

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/integration-base",
3
- "version": "6.2.103",
3
+ "version": "6.2.111",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -47,5 +47,5 @@
47
47
  "devDependencies": {
48
48
  "@types/cron": "^2.0.1"
49
49
  },
50
- "gitHead": "941f06e7c042ed4da546f96cc770e803b3ee1d71"
50
+ "gitHead": "8424feb14ae84e99377321dc36454358631a560c"
51
51
  }
@@ -421,6 +421,12 @@ export class ScenarioInstance {
421
421
  if (this.disposer) {
422
422
  await this.disposer.call(this)
423
423
  }
424
+
425
+ // {{ CHECKPOINT 본 인스턴스를 위해서 생성된 logger를 닫는다.
426
+ if (this.context?.logger) {
427
+ this.context.logger.close()
428
+ }
429
+ // }}
424
430
  }
425
431
 
426
432
  async process(step, context): Promise<{ next: string; state: ScenarioInstanceStatus; data: object }> {