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
Hi, is there any alternative to add below statement?
r.Use(gzip.Gzip(gzip.DefaultCompression, gzip.WithExcludedPaths([]string{"/admin/", "/monitor/"})))
Since today, when I am trying to build, below issues occurred:
Unable to fetch through dep ensure for master branch, getting below error:
Solving failure: No versions of github.com/gin-contrib/gzip met constraints:
v0.0.1: Could not introduce github.com/gin-contrib/[email protected], as it is not allowed by constraint master from project dailyhunt.in/ugc/groups-service.
master: unable to update checked out version: fatal: reference is not a tree: 4b4a6f0
: command failed: [git checkout 4b4a6f0]: exit status 128
After resolving through go get, got below compilation error:
r.Use(gzip.Gzip(gzip.DefaultCompression, gzip.WithExcludedPaths([]string{"/admin/", "/monitor/"})))
too many arguments in call to gzip.Gzip
undefined: gzip.WithExcludedPaths
The text was updated successfully, but these errors were encountered:
Hi, is there any alternative to add below statement?
r.Use(gzip.Gzip(gzip.DefaultCompression, gzip.WithExcludedPaths([]string{"/admin/", "/monitor/"})))
Since today, when I am trying to build, below issues occurred:
Unable to fetch through
dep ensure
for master branch, getting below error:Solving failure: No versions of github.com/gin-contrib/gzip met constraints:
v0.0.1: Could not introduce github.com/gin-contrib/[email protected], as it is not allowed by constraint master from project dailyhunt.in/ugc/groups-service.
master: unable to update checked out version: fatal: reference is not a tree: 4b4a6f0
: command failed: [git checkout 4b4a6f0]: exit status 128
After resolving through go get, got below compilation error:
r.Use(gzip.Gzip(gzip.DefaultCompression, gzip.WithExcludedPaths([]string{"/admin/", "/monitor/"})))
too many arguments in call to gzip.Gzip
undefined: gzip.WithExcludedPaths
The text was updated successfully, but these errors were encountered: