You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Latest mssql (2022-latest refering to 2022-CU14-ubuntu-20.04) is not starting properly because we are getting probe error
Readiness probe failed: /bin/sh: 0: can't access tty; job control turned off /bin/sh: 1: /opt/mssql-tools/bin/sqlcmd: not found
Commadn wasreplaced /opt/mssql-tools/bin/sqlcmd -> /opt/mssql-tools18/bin/sqlcmd. From tracking issue microsoft/mssql-docker#892, it does not seem adding symlink is plan.
To resolve the readiness probe failure with the latest MSSQL Docker image, you need to update the getProbeSettings method in the MsSQL.java file to use the new path /opt/mssql-tools18/bin/sqlcmd and include the -C option. Here is the updated code:
This change updates the readiness probe command to use the new path and includes the -C option for compatibility with the latest MSSQL Docker image [1].
Latest mssql (2022-latest refering to 2022-CU14-ubuntu-20.04) is not starting properly because we are getting probe error
Commadn wasreplaced
/opt/mssql-tools/bin/sqlcmd
->/opt/mssql-tools18/bin/sqlcmd
. From tracking issue microsoft/mssql-docker#892, it does not seem adding symlink is plan.Seems to me we need to change this code in xtf
xtf/builder/src/main/java/cz/xtf/builder/db/MsSQL.java
Lines 92 to 104 in 1daa976
Also from issue comments we may need to add option
-C
The text was updated successfully, but these errors were encountered: