Jinghao Lu
Jinghao Lu
the same err to me: but using `helm push url` works fine helm version: 3 beta4 helm-push version: 0.7.1 harbor version: 1.7.5 ```bash helm3 push ./helm-chart public Pushing web-demo-0.0.1.tgz to...
the same problem to me. try add a route to cni0 fixed for me: ```bash ip r add 10.96.0.0/16 dev cni0 ```
"降低 default value 的优先级,避免在做完 json.unmarshal() 后,default value 将其值覆盖" 我也遇到了这个缺陷, 希望能尽快合并
```golang type ExchangeOauth2CodeReq struct { // 标记 State string `thrift:"State,1,required" validate:"required"` // code Code string `thrift:"Code,2,required" validate:"required"` } func Ping(c context.Context, ctx *app.RequestContext) { req := idl_plugin.ExchangeOauth2CodeReq{} err := ctx.BindAndValidate(&req)...
```shell curl "127.0.0.1:6789/open/api/v1/ping?State=abc" -d '{"State":"xxx", "Code":"xxx"}' -H "content-type: application/json" // {"State":"abc","Code":"xxx"} ``` query 里面也会覆盖掉