Skip to content

Commit

Permalink
Added minor fix for upgrade agent for 2.7.0 (#3500)
Browse files Browse the repository at this point in the history
Signed-off-by: Jonsy13 <[email protected]>
  • Loading branch information
Jonsy13 authored Mar 15, 2022
1 parent a68e5df commit 4085bc0
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,13 @@ func (m *UpgradeManager) getUpgradePath() map[string]UpgradeExecutor {
VersionManager: v2_6_0.NewVersionManger(m.Logger, m.DBClient),
},

// latest version no more upgrades available
"2.6.0": {
NextVersion: "2.7.0",
VersionManager: nil,
},

// latest version no more upgrades available
"2.7.0": {
NextVersion: "",
VersionManager: nil,
},
Expand Down

0 comments on commit 4085bc0

Please sign in to comment.