You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed of losing context of existing headers in response
It fixes losing context in response in case when here 3 or more headers with the same name.
The prev implementation used to use foreach function which uses local lexical environment and did not find this.headers_len localy, which causes crash of the http server module. It was replaced to for loop in order to make access for this.headers_len variable and improve performance of calculation
Closes: #1621
0 commit comments