summaryrefslogtreecommitdiff
path: root/service/http/response.go
diff options
context:
space:
mode:
Diffstat (limited to 'service/http/response.go')
-rw-r--r--service/http/response.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/service/http/response.go b/service/http/response.go
index 8dda87c7..166ced82 100644
--- a/service/http/response.go
+++ b/service/http/response.go
@@ -4,7 +4,7 @@ import (
"encoding/json"
"io"
"net/http"
- "regexp"
+ "strings"
"github.com/spiral/roadrunner"
)
@@ -84,9 +84,9 @@ func handleTrailers(h map[string][]string) map[string][]string {
return h
}
- zp := regexp.MustCompile(` *, *`)
for _, tr := range trailers {
- for _, n := range zp.Split(tr, -1) {
+ for _, n := range strings.Split(tr, ",") {
+ n = strings.Trim(n, "\t ")
if v, ok := h[n]; ok {
h["Trailer:"+n] = v