Sanjay Vasandani

Results 63 comments of Sanjay Vasandani

A workaround is to create a wrapper script that reads from stdin and writes to a temporary file with a specified basename. After `addlicense` modifies this file in place, the...

Given that the "do not use" marker was removed in e4a327aca7ef1c0a82d9322697bddec0794da7a3, would it be safe to at least cut a pre-release or release candidate that includes this?

The Kotlin proto generated code effectively just adds a type-safe builder DSL to the Java protos. The current code generated by grpc-kotlin can accept proto messages built using this. In...

This is the first time I'm trying this, so I can't confirm what version it worked at previously. That said, I would assume it did work at some point as...

> I hope they are executed in the right order i.e. The RpcViews and ZPageHandlers registration first and then starting of the Netty server. Ah, I indeed have them in...

Nope. Even with the registration and HttpServer starting up before the Netty gRPC server is built and started, I'm still not seeing anything in the results. > * try `ZPageHandlers.startHttpServerAndRegisterAll(8000)`...

> * can you check if client side rpcs are reported (after changing to `registerAllGrpcViews()`) No luck.

Doing some digging, I think the problem is in [`loadKustFile`](https://github.com/kubernetes-sigs/kustomize/blob/b2d65ddc98e09187a8e38adc27c30bab078c1dbf/api/internal/target/kusttarget.go#L88). More specifically, the `RestrictionRootOnly` load restrictor might be applying to the resolved real path of my `kustomization.yaml` symlink. Indeed, passing...

I think there may be other cases that aren't handled by changing the load restrictor, e.g. referencing other files in the kustomization.yaml that are symlinks. I believe this prevents running...

> `--load-restrictor LoadRestrictionsNone` resolves this issue in bazel. I don't think this is true. There's some other issues with symlink resolution. If you have a mix of generated and source...