Skip to content

Commit

Permalink
#### Version 1.7.2
Browse files Browse the repository at this point in the history
* Bug Fixed: Request.Release()增加对realUrl的处理
* 2019-10-23 12:00 at ShangHai
  • Loading branch information
devfeel committed Oct 23, 2019
1 parent 3ff552d commit 759a0f1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion request.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import (
"strings"
)


type Request struct {
*http.Request
httpCtx *HttpContext
Expand All @@ -35,6 +34,7 @@ func (req *Request) release() {
req.isReadBody = false
req.postBody = nil
req.requestID = ""
req.realUrl = ""
}

// RequestID get unique ID with current request
Expand Down
5 changes: 5 additions & 0 deletions version.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## dotweb版本记录:


#### Version 1.7.2
* Bug Fixed: Request.Release()增加对realUrl的处理
* 2019-10-23 12:00 at ShangHai

#### Version 1.7.1
* New Feature: 新增stringx.CompletionRight\CompletionLeft,用于指定长度两侧补齐字符串
* Update: 完善dotweb/routers系统页,输出method+router格式,类似:"GET /dotweb/routers"
Expand Down

0 comments on commit 759a0f1

Please sign in to comment.