Merge pull request #1146 from Slamper/patch-1

Fix cache corruption due to recorder reuse

Former-commit-id: e010b13230f93e0dab208bc1558aca094efc1667
This commit is contained in:
Gerasimos (Makis) Maropoulos 2018-12-02 03:00:57 +02:00 committed by GitHub
commit 5f1dd78a12

View File

@ -115,7 +115,8 @@ func (e *Entry) Reset(statusCode int, headers map[string][]string,
e.response.headers = newHeaders
}
e.response.body = body
e.response.body = make([]byte,len(body))
copy(e.response.body, body)
// check if a given life changer provided
// and if it does then execute the change life time
if lifeChanger != nil {