Skip to content

Commit 9bc7dfe

Browse files
committed
update core deps
1 parent fcaa9dd commit 9bc7dfe

File tree

4 files changed

+32
-30
lines changed

4 files changed

+32
-30
lines changed

cache/client/client.go

+3-10
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ import (
1616
// for each of the cached route paths's response
1717
// register one client handler per route.
1818
//
19-
// it's just calls a remote cache service server/handler,
20-
//
21-
// which lives on other, external machine.
19+
// it's just calls a remote cache service server/handler, which may lives on other, external machine.
2220
type ClientHandler struct {
2321
// bodyHandler the original route's handler
2422
bodyHandler context.Handler
@@ -81,11 +79,6 @@ func (h *ClientHandler) AddRule(r rule.Rule) *ClientHandler {
8179
// this client is an exported to give you a freedom of change its Transport, Timeout and so on(in case of ssl)
8280
var Client = &http.Client{Timeout: cfg.RequestCacheTimeout}
8381

84-
const (
85-
methodGet = "GET"
86-
methodPost = "POST"
87-
)
88-
8982
// ServeHTTP , or remote cache client whatever you like, it's the client-side function of the ServeHTTP
9083
// sends a request to the server-side remote cache Service and sends the cached response to the frontend client
9184
// it is used only when you achieved something like horizontal scaling (separate machines)
@@ -113,7 +106,7 @@ func (h *ClientHandler) ServeHTTP(ctx *context.Context) {
113106
uri.ServerAddr(h.remoteHandlerURL).ClientURI(ctx.Request().URL.RequestURI()).ClientMethod(ctx.Request().Method)
114107

115108
// set the full url here because below we have other issues, probably net/http bugs
116-
request, err := http.NewRequest(methodGet, uri.String(), nil)
109+
request, err := http.NewRequest(http.MethodGet, uri.String(), nil)
117110
if err != nil {
118111
//// println("error when requesting to the remote service: " + err.Error())
119112
// somehing very bad happens, just execute the user's handler and return
@@ -145,7 +138,7 @@ func (h *ClientHandler) ServeHTTP(ctx *context.Context) {
145138
uri.Lifetime(h.life)
146139
uri.ContentType(recorder.Header().Get(cfg.ContentTypeHeader))
147140

148-
request, err = http.NewRequest(methodPost, uri.String(), bytes.NewBuffer(body)) // yes new buffer every time
141+
request, err = http.NewRequest(http.MethodPost, uri.String(), bytes.NewBuffer(body)) // yes new buffer every time
149142

150143
// println("POST Do to the remote cache service with the url: " + request.URL.String())
151144
if err != nil {

cache/client/handler.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type Handler struct {
3131

3232
type MaxAgeFunc func(*context.Context) time.Duration
3333

34-
// NewHandler returns a new cached handler for the "bodyHandler"
34+
// NewHandler returns a new Server-side cached handler for the "bodyHandler"
3535
// which expires every "expiration".
3636
func NewHandler(maxAgeFunc MaxAgeFunc) *Handler {
3737
return &Handler{

go.mod

+6-6
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,17 @@ require (
3131
github.com/klauspost/compress v1.17.0
3232
github.com/mailgun/raymond/v2 v2.0.48
3333
github.com/mailru/easyjson v0.7.7
34-
github.com/microcosm-cc/bluemonday v1.0.25
34+
github.com/microcosm-cc/bluemonday v1.0.26
3535
github.com/redis/go-redis/v9 v9.2.1
3636
github.com/schollz/closestmatch v2.1.0+incompatible
3737
github.com/shirou/gopsutil/v3 v3.23.9
3838
github.com/tdewolff/minify/v2 v2.12.9
3939
github.com/vmihailenco/msgpack/v5 v5.4.0
4040
github.com/yosssi/ace v0.0.5
4141
go.etcd.io/bbolt v1.3.7
42-
golang.org/x/crypto v0.13.0
43-
golang.org/x/net v0.15.0
44-
golang.org/x/sys v0.12.0
42+
golang.org/x/crypto v0.14.0
43+
golang.org/x/net v0.17.0
44+
golang.org/x/sys v0.13.0
4545
golang.org/x/text v0.13.0
4646
golang.org/x/time v0.3.0
4747
google.golang.org/protobuf v1.31.0
@@ -81,11 +81,11 @@ require (
8181
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
8282
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
8383
github.com/modern-go/reflect2 v1.0.2 // indirect
84-
github.com/nats-io/jwt/v2 v2.5.0 // indirect
84+
github.com/nats-io/jwt/v2 v2.5.2 // indirect
8585
github.com/nats-io/nats.go v1.28.0 // indirect
8686
github.com/nats-io/nkeys v0.4.4 // indirect
8787
github.com/nats-io/nuid v1.0.1 // indirect
88-
github.com/nxadm/tail v1.4.8 // indirect
88+
github.com/nxadm/tail v1.4.11 // indirect
8989
github.com/pkg/errors v0.8.1 // indirect
9090
github.com/pmezard/go-difflib v1.0.0 // indirect
9191
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect

go.sum

+22-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)