From 542581447979ffe3bcedfc5fb5374d18d918e5a1 Mon Sep 17 00:00:00 2001 From: Ranbir Aulakh Date: Wed, 29 May 2024 14:57:19 -0400 Subject: [PATCH] fix: update sync config for kinesis stream and s3 --- lib/osml/model_runner/testing/mr_sync.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/osml/model_runner/testing/mr_sync.ts b/lib/osml/model_runner/testing/mr_sync.ts index 3d5ef85..f6cbe06 100644 --- a/lib/osml/model_runner/testing/mr_sync.ts +++ b/lib/osml/model_runner/testing/mr_sync.ts @@ -20,12 +20,12 @@ import { OSMLBucket } from "../../osml_bucket"; export class MRSyncConfig { /** * Creates an instance of MRSyncConfig. - * @param {string} S3_RESULTS_BUCKET - The name of the S3 bucket for storing results. Default is "test-results". - * @param {string} KINESIS_RESULTS_STREAM - The name of the Kinesis stream for publishing results. Default is "test-stream". + * @param {string} S3_RESULTS_BUCKET - The name of the S3 bucket for storing results. Default is "mr-test-results". + * @param {string} KINESIS_RESULTS_STREAM - The name of the Kinesis stream for publishing results. Default is "mr-test-stream". */ constructor( - public S3_RESULTS_BUCKET: string = "test-results", - public KINESIS_RESULTS_STREAM: string = "test-stream" + public S3_RESULTS_BUCKET: string = "mr-test-results", + public KINESIS_RESULTS_STREAM: string = "mr-test-stream" ) {} }