aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rpc/http.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/rpc/http.go b/rpc/http.go
index afcdd4bd6..c923580bf 100644
--- a/rpc/http.go
+++ b/rpc/http.go
@@ -170,6 +170,7 @@ func newCorsHandler(srv *Server, corsString string) http.Handler {
c := cors.New(cors.Options{
AllowedOrigins: allowedOrigins,
AllowedMethods: []string{"POST", "GET"},
+ MaxAge: 600,
})
return c.Handler(srv)
}