Skip to content

Commit

Permalink
fix: update sync config for kinesis stream and s3
Browse files Browse the repository at this point in the history
  • Loading branch information
RanbirAulakh authored and drduhe committed May 29, 2024
1 parent efb9dad commit 5425814
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/osml/model_runner/testing/mr_sync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
) {}
}

Expand Down

1 comment on commit 5425814

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

St.
Category Percentage Covered / Total
🟢 Statements 93.57% 786/840
🟡 Branches 74.72% 201/269
🟢 Functions 100% 57/57
🟢 Lines 93.57% 786/840

Test suite run success

43 tests passing in 20 suites.

Report generated by 🧪jest coverage report action from 5425814

Please sign in to comment.