Fix UpgradeVersionTag field not being passed correctly (#3304)

pull/3293/head^2
Kyle Havlovitz 7 years ago committed by James Phillips
parent f34b9bd7e1
commit d74390ef86

@ -210,6 +210,7 @@ func (s *HTTPServer) OperatorAutopilotConfiguration(resp http.ResponseWriter, re
ServerStabilizationTime: api.NewReadableDuration(reply.ServerStabilizationTime), ServerStabilizationTime: api.NewReadableDuration(reply.ServerStabilizationTime),
RedundancyZoneTag: reply.RedundancyZoneTag, RedundancyZoneTag: reply.RedundancyZoneTag,
DisableUpgradeMigration: reply.DisableUpgradeMigration, DisableUpgradeMigration: reply.DisableUpgradeMigration,
UpgradeVersionTag: reply.UpgradeVersionTag,
CreateIndex: reply.CreateIndex, CreateIndex: reply.CreateIndex,
ModifyIndex: reply.ModifyIndex, ModifyIndex: reply.ModifyIndex,
} }
@ -235,6 +236,7 @@ func (s *HTTPServer) OperatorAutopilotConfiguration(resp http.ResponseWriter, re
ServerStabilizationTime: conf.ServerStabilizationTime.Duration(), ServerStabilizationTime: conf.ServerStabilizationTime.Duration(),
RedundancyZoneTag: conf.RedundancyZoneTag, RedundancyZoneTag: conf.RedundancyZoneTag,
DisableUpgradeMigration: conf.DisableUpgradeMigration, DisableUpgradeMigration: conf.DisableUpgradeMigration,
UpgradeVersionTag: conf.UpgradeVersionTag,
} }
// Check for cas value // Check for cas value

Loading…
Cancel
Save