Skip to content

Commit 9cd76a0

Browse files
committed
Rename SA_PASSWORD to MSSQL_SA_PASSWORD as SA_PASSWORD is deprecated
1 parent ec8e234 commit 9cd76a0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

extensions/reactive-mssql-client/deployment/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
</ports>
149149
<env>
150150
<ACCEPT_EULA>Y</ACCEPT_EULA>
151-
<SA_PASSWORD>yourStrong(!)Password</SA_PASSWORD>
151+
<MSSQL_SA_PASSWORD>yourStrong(!)Password</MSSQL_SA_PASSWORD>
152152
</env>
153153
<log>
154154
<prefix>MSSQL:</prefix>

integration-tests/hibernate-reactive-mssql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@
205205
</ports>
206206
<env>
207207
<ACCEPT_EULA>Y</ACCEPT_EULA>
208-
<SA_PASSWORD>yourStrong(!)Password</SA_PASSWORD>
208+
<MSSQL_SA_PASSWORD>yourStrong(!)Password</MSSQL_SA_PASSWORD>
209209
</env>
210210
<log>
211211
<prefix>MS SQL Server:</prefix>

integration-tests/jpa-mssql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ you'll probably want to change the authentication password too: `-Dmssqldb.sa-pa
2525
If you prefer to run the MSSQL Server container via podman, use:
2626

2727
```
28-
podman run --rm=true --net=host --memory-swappiness=0 --name mssql_testing -e SA_PASSWORD=yourStrong(!)Password -e ACCEPT_EULA=Y -p 1435:1433 mcr.microsoft.com/mssql/2022-latest
28+
podman run --rm=true --net=host --memory-swappiness=0 --name mssql_testing -e MSSQL_SA_PASSWORD=yourStrong(!)Password -e ACCEPT_EULA=Y -p 1435:1433 mcr.microsoft.com/mssql/2022-latest
2929
```
3030

3131
## Limitations

integration-tests/jpa-mssql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@
201201
</ports>
202202
<env>
203203
<ACCEPT_EULA>Y</ACCEPT_EULA>
204-
<SA_PASSWORD>yourStrong(!)Password</SA_PASSWORD>
204+
<MSSQL_SA_PASSWORD>yourStrong(!)Password</MSSQL_SA_PASSWORD>
205205
</env>
206206
<log>
207207
<prefix>MS SQL Server:</prefix>

integration-tests/reactive-mssql-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@
167167
</ports>
168168
<env>
169169
<ACCEPT_EULA>Y</ACCEPT_EULA>
170-
<SA_PASSWORD>yourStrong(!)Password</SA_PASSWORD>
170+
<MSSQL_SA_PASSWORD>yourStrong(!)Password</MSSQL_SA_PASSWORD>
171171
</env>
172172
<log>
173173
<prefix>MSSQL:</prefix>

0 commit comments

Comments
 (0)