From b7349528551801a1b85f8610a3728534649e4a4c Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Wed, 28 May 2025 13:01:08 -0400 Subject: [PATCH] proper handling of case when amd fails because no speech credentials (#1220) --- lib/tasks/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/config.js b/lib/tasks/config.js index b9cab89b..39194c92 100644 --- a/lib/tasks/config.js +++ b/lib/tasks/config.js @@ -139,7 +139,7 @@ class TaskConfig extends Task { try { this.ep = ep; - this.startAmd(cs, ep, this, this.data.amd); + await this.startAmd(cs, ep, this, this.data.amd); } catch (err) { this.logger.info({err}, 'Config:exec - Error calling startAmd'); }