mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Merge pull request #53 from aszxqw/master
fix bug: 'http: multiple response.WriteHeader calls'
This commit is contained in:
commit
ab20cf8197
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1 +1,3 @@
|
|||
weed
|
||||
tags
|
||||
*.swp
|
||||
|
|
|
@ -65,7 +65,6 @@ func writeJsonQuiet(w http.ResponseWriter, r *http.Request, httpStatus int, obj
|
|||
}
|
||||
}
|
||||
func writeJsonError(w http.ResponseWriter, r *http.Request, httpStatus int, err error) {
|
||||
w.WriteHeader(http.StatusInternalServerError)
|
||||
m := make(map[string]interface{})
|
||||
m["error"] = err.Error()
|
||||
writeJsonQuiet(w, r, httpStatus, m)
|
||||
|
|
Loading…
Reference in a new issue