From 08e006b328af4adc30302b83719cb6c176e55461 Mon Sep 17 00:00:00 2001 From: oneofthezombies Date: Fri, 15 Dec 2023 19:45:43 +0900 Subject: [PATCH] fix: restore dogu agent auto update --- .../module/event/host-app/host-app-update-processor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/console-web-server/src/enterprise/module/event/host-app/host-app-update-processor.ts b/projects/console-web-server/src/enterprise/module/event/host-app/host-app-update-processor.ts index 770451293..4b963e188 100644 --- a/projects/console-web-server/src/enterprise/module/event/host-app/host-app-update-processor.ts +++ b/projects/console-web-server/src/enterprise/module/event/host-app/host-app-update-processor.ts @@ -47,6 +47,6 @@ export class HostAppUpdateProcessor implements OnModuleInit, OnModuleDestroy { } private async update(): Promise { - // await this.hostApp.updateAllIdleHost(); + await this.hostApp.updateAllIdleHost(); } }