diff --git a/system/update.go b/system/update.go index 028a53b..f216e29 100644 --- a/system/update.go +++ b/system/update.go @@ -132,6 +132,8 @@ func UpdateAction(w http.ResponseWriter, req *http.Request) { str := fmt.Sprintf("updater not running, status %s exit_code %d", inspectUpdater.State.Status, inspectUpdater.State.ExitCode) http.Error(w, str, http.StatusInternalServerError) } + + utils.Return(w, true) } func createUpdater(ctx context.Context, image string, inspect *define.InspectContainerData) (string, error) {