From d46ef8863f385e0b2107908dac424937d74f0c4a Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Thu, 23 Dec 2021 19:42:50 +0000 Subject: [PATCH] --- ayanova/src/api/translation.js | 2 +- ayanova/src/components/report-selector-control.vue | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ayanova/src/api/translation.js b/ayanova/src/api/translation.js index 6d0df24b..c0696dee 100644 --- a/ayanova/src/api/translation.js +++ b/ayanova/src/api/translation.js @@ -285,7 +285,7 @@ export default { "AyaType", "Now", "DateRangeToday", - "ReportRenderAtCapacity" + "ReportRenderTimeOut" ], //////////////////////////////////////////////////////// diff --git a/ayanova/src/components/report-selector-control.vue b/ayanova/src/components/report-selector-control.vue index 5318f00c..12d80e7b 100644 --- a/ayanova/src/components/report-selector-control.vue +++ b/ayanova/src/components/report-selector-control.vue @@ -112,11 +112,12 @@ export default { this.reject(res); } else { //special handling for busy response meaning no render slots available at the server - this is the error Ok(ApiOkResponse.Response(new { timeout = true, timeoutconfig = ServerBootConfig.AYANOVA_REPORT_RENDERING_TIMEOUT })); + //this is the error Ok(ApiOkResponse.Response(new { timeout = true, timeoutconfig = ServerBootConfig.AYANOVA_REPORT_RENDERING_TIMEOUT })); + // return Ok(ApiOkResponse.Response(new { timeout = true, timeoutconfig = ServerBootConfig.AYANOVA_REPORT_RENDERING_TIMEOUT })); if (res.data && res.data.busy) { window.$gz.eventBus.$emit( "notify-warning", - window.$gz.translation.get("ReportRenderAtCapacity"), + window.$gz.translation.get("ReportRenderTimeOut"), `${this.$store.state.helpUrl}/ay-report-busy` ); } else {