1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-03 02:20:19 +00:00

Merge pull request #1455 from nkbai/develop

windows下静态文件映射找不到问题以及 grace init延后
This commit is contained in:
astaxie
2015-12-09 23:44:45 +08:00
4 changed files with 42 additions and 67 deletions

View File

@ -897,10 +897,6 @@ type responseWriter struct {
status int
}
// Header returns the header map that will be sent by WriteHeader.
func (w *responseWriter) Header() http.Header {
return w.ResponseWriter.Header()
}
// Write writes the data to the connection as part of an HTTP reply,
// and sets `started` to true.