Skip to content

Commit

Permalink
Rename SA_PASSWORD to MSSQL_SA_PASSWORD as SA_PASSWORD is deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
jedla97 committed Jul 24, 2024
1 parent ec8e234 commit 9cd76a0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion extensions/reactive-mssql-client/deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@
</ports>
<env>
<ACCEPT_EULA>Y</ACCEPT_EULA>
<SA_PASSWORD>yourStrong(!)Password</SA_PASSWORD>
<MSSQL_SA_PASSWORD>yourStrong(!)Password</MSSQL_SA_PASSWORD>
</env>
<log>
<prefix>MSSQL:</prefix>
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/hibernate-reactive-mssql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
</ports>
<env>
<ACCEPT_EULA>Y</ACCEPT_EULA>
<SA_PASSWORD>yourStrong(!)Password</SA_PASSWORD>
<MSSQL_SA_PASSWORD>yourStrong(!)Password</MSSQL_SA_PASSWORD>
</env>
<log>
<prefix>MS SQL Server:</prefix>
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/jpa-mssql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ you'll probably want to change the authentication password too: `-Dmssqldb.sa-pa
If you prefer to run the MSSQL Server container via podman, use:

```
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
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
```

## Limitations
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/jpa-mssql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
</ports>
<env>
<ACCEPT_EULA>Y</ACCEPT_EULA>
<SA_PASSWORD>yourStrong(!)Password</SA_PASSWORD>
<MSSQL_SA_PASSWORD>yourStrong(!)Password</MSSQL_SA_PASSWORD>
</env>
<log>
<prefix>MS SQL Server:</prefix>
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/reactive-mssql-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
</ports>
<env>
<ACCEPT_EULA>Y</ACCEPT_EULA>
<SA_PASSWORD>yourStrong(!)Password</SA_PASSWORD>
<MSSQL_SA_PASSWORD>yourStrong(!)Password</MSSQL_SA_PASSWORD>
</env>
<log>
<prefix>MSSQL:</prefix>
Expand Down

0 comments on commit 9cd76a0

Please sign in to comment.