We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d073b commit 5018b57Copy full SHA for 5018b57
engine/schema/src/com/cloud/upgrade/dao/Upgrade4920to41000.java
@@ -183,7 +183,7 @@ private void updateSystemVmTemplates(final Connection conn) {
183
// Change value of global configuration parameter
184
// minreq.sysvmtemplate.version for the ACS version
185
try (PreparedStatement update_pstmt = conn.prepareStatement("UPDATE `cloud`.`configuration` SET value = ? WHERE name = ?");) {
186
- update_pstmt.setString(1, getUpgradedVersion());
+ update_pstmt.setString(1, "4.10.0");
187
update_pstmt.setString(2, "minreq.sysvmtemplate.version");
188
update_pstmt.executeUpdate();
189
} catch (final SQLException e) {
0 commit comments