File tree 3 files changed +5
-5
lines changed
packages/opentelemetry-test-utils/src 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,12 @@ jobs:
28
28
mssql :
29
29
image : mcr.microsoft.com/mssql/server:2022-latest
30
30
env :
31
- SA_PASSWORD : mssql_passw0rd
31
+ MSSQL_SA_PASSWORD : mssql_passw0rd
32
32
ACCEPT_EULA : Y
33
33
ports :
34
34
- 1433:1433
35
35
options : >-
36
- --health-cmd "/opt/mssql-tools18/bin/sqlcmd -S localhost -U sa -P $SA_PASSWORD -C -Q 'select 1' -b -o /dev/null"
36
+ --health-cmd "/opt/mssql-tools18/bin/sqlcmd -S localhost -U sa -P $MSSQL_SA_PASSWORD -C -Q 'select 1' -b -o /dev/null"
37
37
--health-interval 1s
38
38
--health-timeout 30s
39
39
--health-start-period 10s
Original file line number Diff line number Diff line change @@ -26,12 +26,12 @@ jobs:
26
26
mssql :
27
27
image : mcr.microsoft.com/mssql/server:2022-latest
28
28
env :
29
- SA_PASSWORD : mssql_passw0rd
29
+ MSSQL_SA_PASSWORD : mssql_passw0rd
30
30
ACCEPT_EULA : Y
31
31
ports :
32
32
- 1433:1433
33
33
options : >-
34
- --health-cmd "/opt/mssql-tools18/bin/sqlcmd -S localhost -U sa -P $SA_PASSWORD -C -Q 'select 1' -b -o /dev/null"
34
+ --health-cmd "/opt/mssql-tools18/bin/sqlcmd -S localhost -U sa -P $MSSQL_SA_PASSWORD -C -Q 'select 1' -b -o /dev/null"
35
35
--health-interval 1s
36
36
--health-timeout 30s
37
37
--health-start-period 10s
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ const dockerRunCmds = {
39
39
memcached :
40
40
'docker run --rm -d --name otel-memcached -p 11211:11211 memcached:1.6.9-alpine' ,
41
41
mssql :
42
- 'docker run --rm -d --name otel-mssql -p 1433:1433 -e SA_PASSWORD =mssql_passw0rd -e ACCEPT_EULA=Y mcr.microsoft.com/mssql/server:2022-latest' ,
42
+ 'docker run --rm -d --name otel-mssql -p 1433:1433 -e MSSQL_SA_PASSWORD =mssql_passw0rd -e ACCEPT_EULA=Y mcr.microsoft.com/mssql/server:2022-latest' ,
43
43
mysql :
44
44
'docker run --rm -d --name otel-mysql -p 33306:3306 -e MYSQL_ROOT_PASSWORD=rootpw -e MYSQL_DATABASE=test_db -e MYSQL_USER=otel -e MYSQL_PASSWORD=secret mysql:5.7 --log_output=TABLE --general_log=ON' ,
45
45
postgres :
You can’t perform that action at this time.
0 commit comments