Skip to content

Commit d7c5994

Browse files
committed
Merge pull request #2025 from ustcweizhou/4.10-restartnetwork
[4.10-blocker] Fix error in restart network in 4.10.0.0 RCThe PR fixes the error in restart network: 2017-04-04 10:27:39,217 DEBUG [c.c.n.r.NetworkHelperImpl] (API-Job-Executor-2:ctx-08904854 job-29417 ctx-3405d3f2) (logid:19bbd6e6) Router requires upgrade. Unable to send command to router:9784, router template version : Cloudstack Release 4.10.0 Wed Feb 15 05:42:18 UTC 2017, minimal required version : 4.10.0.0 It works after changing minreq.sysvmtemplate.version from 4.10.0.0 to 4.10.0 * pr/2025: Fix error in restart network in 4.10.0.0 RC Signed-off-by: Rajani Karuturi <rajani.karuturi@accelerite.com>
2 parents 7b78a22 + 5018b57 commit d7c5994

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)