瀏覽代碼

Respond with 200 in /api/server/health DELETE

gabrielseibel1 1 年之前
父節點
當前提交
68d387a59d
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      controllers/server.go

+ 1 - 0
controllers/server.go

@@ -28,6 +28,7 @@ func serverHandlers(r *mux.Router) {
 		"/api/server/health",
 		func(w http.ResponseWriter, _ *http.Request) {
 			_ = syscall.Kill(syscall.Getpid(), syscall.SIGINT)
+			w.WriteHeader(http.StatusOK)
 			_, _ = w.Write([]byte("Shutting down server..."))
 		},
 	).Methods(http.MethodDelete)