From 3cc4f1c63e161ad6c111b5a122afaf326f337145 Mon Sep 17 00:00:00 2001 From: Dave Richer Date: Tue, 8 Apr 2025 12:00:43 -0400 Subject: [PATCH 1/2] feature/IO-2769-Job-Totals-Testing - fix typo --- .../jobs-detail-header-actions.component.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/jobs-detail-header-actions/jobs-detail-header-actions.component.jsx b/client/src/components/jobs-detail-header-actions/jobs-detail-header-actions.component.jsx index 860bb7e98..1db81a3b1 100644 --- a/client/src/components/jobs-detail-header-actions/jobs-detail-header-actions.component.jsx +++ b/client/src/components/jobs-detail-header-actions/jobs-detail-header-actions.component.jsx @@ -1135,7 +1135,7 @@ export function JobsDetailHeaderActions({ } catch (err) { console.error(`Error submitting job for testing: ${err?.message}`); notification.error({ - message: t("genera.errors.submit-for-testing-error") + message: t("general.errors.submit-for-testing-error") }); } } From c169bb5d5dbbf2dd22abbfa386f0eabb1196d5ea Mon Sep 17 00:00:00 2001 From: Dave Richer Date: Tue, 8 Apr 2025 12:19:33 -0400 Subject: [PATCH 2/2] feature/IO-2769-Job-Totals-Testing - update end point --- server/job/job-totals-recorder.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/server/job/job-totals-recorder.js b/server/job/job-totals-recorder.js index 66edad974..d837db220 100644 --- a/server/job/job-totals-recorder.js +++ b/server/job/job-totals-recorder.js @@ -27,7 +27,13 @@ const getEnvPrefix = () => { const envPrefix = getEnvPrefix(); -const S3_BUCKET_NAME = process.env?.NODE_ENV === "development" ? "imex-job-totals" : `job-totals-${envPrefix}`; +const S3_BUCKET_NAME = + process.env?.NODE_ENV === "development" + ? "imex-job-totals" + : InstanceMgr({ + imex: `job-totals-${envPrefix}`, + rome: `job-totals-${envPrefix}-rome` + }); /** * Generates a unique S3 key for the job totals file