Alberto Cortés
Alberto Cortés
I had a similar problem than the OP, but in my case it was because I gave my service account the `Storage Object Admin` role instead of the `Storage Admin`...
The problem is still there if I use `:PlugUpdate --sync` instead of just `:PlugUpdate`. Some more details about my system: ``` ; git --version git version 2.20.1 ; gpg-agent --version...
IMHO, vim-fish should not break `=`. I don't have endwise installed, but my vim is still unable to indent code properly when using vim-fish. Endwise is nice but a luxury,...
the go.mod I used to reproduce the bug: ``` ; cat go.mod module local go 1.18 require github.com/ory/graceful v0.1.2 require github.com/pkg/errors v0.9.1 // indirect ```
Here are some things that might help: - the goroutine created [here](https://github.com/ory/graceful/blob/9f70fb51bea501ded10175d6974129df20b2cf93/http_graceful.go#L59) waits forever [here](https://github.com/ory/graceful/blob/9f70fb51bea501ded10175d6974129df20b2cf93/http_graceful.go#L62) until a signal arrives. But if we shut down the server manually we want that...
I think `server.RegisterOnShutdown` is a nice solution! it even appends to a slice of functions so it will work just fine even if users have already registered their own shutdowns...
Ignoring certain directories will be a breaking change, as you say. Maybe it would be better to add a way to specify what packages the tool must parse, right now,...
Error loading module dependency packages while running manifests command with controller-gen v0.12.0
@sbueringer said: > I'm wondering if the problem is in controller-gen itself or in your project I think you are right, it might be the project, not controller-gen, here is...
Error loading module dependency packages while running manifests command with controller-gen v0.12.0
I'm getting some progress by setting `GOFLAGS=-mod=mod` when calling controller-gen. Some of the dependencies used by `k8s.io/apimachinery/pkg/runtime` are so old that they have go versions lower than go1.14, which turns...