Skip to content

Commit f87354b

Browse files
committed
Mitigate credscan issues.
1 parent ea0b63c commit f87354b

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

build-tests/rush-amazon-s3-build-cache-plugin-integration-test/docker-compose.yml

-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ services:
77
ports:
88
- '9000:9000'
99
- '9001:9001'
10-
environment:
11-
MINIO_ROOT_USER: minio
12-
MINIO_ROOT_PASSWORD: minio123
1310
healthcheck:
1411
test: ['CMD', 'curl', '-f', 'http://localhost:9000/minio/health/live']
1512
interval: 30s

build-tests/rush-redis-cobuild-plugin-integration-test/src/testLockProvider.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { OperationStatus, type ICobuildContext, RushSession } from '@microsoft/r
1010

1111
const options: IRedisCobuildLockProviderOptions = {
1212
url: 'redis://localhost:6379',
13-
password: 'redis123'
13+
password: 'redis123' // [SuppressMessage("Microsoft.Security", "CS001:SecretInline", Justification="Password used in unit test.")]
1414
};
1515

1616
const rushSession: RushSession = new RushSession({

rush-plugins/rush-redis-cobuild-plugin/src/test/RedisCobuildLockProvider.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ describe(RedisCobuildLockProvider.name, () => {
8585

8686
it('expands options with environment variables', () => {
8787
const expectedOptions = {
88-
password: 'redis123'
88+
password: 'redis123' // [SuppressMessage("Microsoft.Security", "CS001:SecretInline", Justification="Password used in unit test.")]
8989
};
9090
const actualOptions = RedisCobuildLockProvider.expandOptionsWithEnvironmentVariables(
9191
{

0 commit comments

Comments
 (0)