We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 007be77 commit 2c89c1cCopy full SHA for 2c89c1c
1 file changed
engine/schema/src/main/java/com/cloud/upgrade/dao/Upgrade42020to42030.java
@@ -81,7 +81,7 @@ protected String getJsInterpretationEnabled(Connection conn) {
81
}
82
83
protected void updateJsInterpretationEnabledFields(Connection conn, String encryptedValue) {
84
- String query = "UPDATE cloud.configuration SET value = ?, category = 'System' WHERE name = 'js.interpretation.enabled';";
+ String query = "UPDATE cloud.configuration SET value = ?, category = 'System' WHERE name = 'js.interpretation.enabled' AND category = 'Hidden';";
85
86
try (PreparedStatement pstmt = conn.prepareStatement(query)) {
87
String decryptedValue = DBEncryptionUtil.decrypt(encryptedValue);
0 commit comments