Browse Source

Remove Cache-Control

Volodymyr Tkach 2 years ago
parent
commit
2243fb02d0
1 changed files with 0 additions and 3 deletions
  1. 0 3
      utils/http/helpers/helpers.go

+ 0 - 3
utils/http/helpers/helpers.go

@@ -38,7 +38,6 @@ func HandlerApplicationStatus() http.Handler {
 			`{"alloc":"%v","total_alloc":"%v","sys":"%v","num_gc":"%v"}`,
 			`{"alloc":"%v","total_alloc":"%v","sys":"%v","num_gc":"%v"}`,
 			m.Alloc, m.TotalAlloc, m.Sys, m.NumGC,
 			m.Alloc, m.TotalAlloc, m.Sys, m.NumGC,
 		)
 		)
-		w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
 		w.Header().Set("Content-Type", "application/json")
 		w.Header().Set("Content-Type", "application/json")
 		if _, err := w.Write([]byte(fmt.Sprintf(`{"routines":%d,"memory":%s}`, runtime.NumGoroutine(), memory))); err != nil {
 		if _, err := w.Write([]byte(fmt.Sprintf(`{"routines":%d,"memory":%s}`, runtime.NumGoroutine(), memory))); err != nil {
 			log.Printf("%s\n", err.Error())
 			log.Printf("%s\n", err.Error())
@@ -52,7 +51,6 @@ func HandlerBuildInFile(data, contentType string) http.Handler {
 			RespondAsMethodNotAllowed(w, r)
 			RespondAsMethodNotAllowed(w, r)
 			return
 			return
 		}
 		}
-		w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
 		w.Header().Set("Content-Type", contentType)
 		w.Header().Set("Content-Type", contentType)
 		if _, err := w.Write([]byte(data)); err != nil {
 		if _, err := w.Write([]byte(data)); err != nil {
 			fmt.Printf("%s\n", err.Error())
 			fmt.Printf("%s\n", err.Error())
@@ -70,7 +68,6 @@ func MinifyHtmlCode(str string) string {
 func RespondAsBadRequest(w http.ResponseWriter, r *http.Request, err error) {
 func RespondAsBadRequest(w http.ResponseWriter, r *http.Request, err error) {
 	if err != nil {
 	if err != nil {
 		log.Printf("%s\n", err.Error())
 		log.Printf("%s\n", err.Error())
-		w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
 		w.Header().Set("Content-Type", "application/json")
 		w.Header().Set("Content-Type", "application/json")
 		w.WriteHeader(http.StatusBadRequest)
 		w.WriteHeader(http.StatusBadRequest)
 		if _, e := w.Write([]byte(`{"error":"` + strconv.Quote(err.Error()) + `"}`)); e != nil {
 		if _, e := w.Write([]byte(`{"error":"` + strconv.Quote(err.Error()) + `"}`)); e != nil {