Skip to content

Commit 2a2058a

Browse files
committed
Fix grammar mistake
1 parent 63c708a commit 2a2058a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/schema/src/main/java/com/cloud/upgrade/dao/Upgrade42210to42300.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ protected void updateJsInterpretationEnabledFields(Connection conn, String encry
8080

8181
try (PreparedStatement pstmt = conn.prepareStatement(query)) {
8282
String decryptedValue = DBEncryptionUtil.decrypt(encryptedValue);
83-
logger.info("Updating setting 'js.interpretation.enabled' to decrypted value [{}], and category 'System', component 'JsInterpreter', and is_dynamic '1'.", decryptedValue);
83+
logger.info("Updating setting 'js.interpretation.enabled' to decrypted value [{}], category 'System', component 'JsInterpreter', and is_dynamic '1'.", decryptedValue);
8484
pstmt.setString(1, decryptedValue);
8585
pstmt.executeUpdate();
8686
} catch (SQLException e) {

0 commit comments

Comments
 (0)