Skip to content

Commit 5018b57

Browse files
committed
Fix error in restart network in 4.10.0.0 RC
1 parent 85d073b commit 5018b57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/schema/src/com/cloud/upgrade/dao/Upgrade4920to41000.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ private void updateSystemVmTemplates(final Connection conn) {
183183
// Change value of global configuration parameter
184184
// minreq.sysvmtemplate.version for the ACS version
185185
try (PreparedStatement update_pstmt = conn.prepareStatement("UPDATE `cloud`.`configuration` SET value = ? WHERE name = ?");) {
186-
update_pstmt.setString(1, getUpgradedVersion());
186+
update_pstmt.setString(1, "4.10.0");
187187
update_pstmt.setString(2, "minreq.sysvmtemplate.version");
188188
update_pstmt.executeUpdate();
189189
} catch (final SQLException e) {

0 commit comments

Comments
 (0)