Iwasaki Yudai
Iwasaki Yudai
Thank you for the PR. Could you share some use cases with this function? I think putting a proxy in front of gotty can do the same thing. So we...
I've resolved this issue partially. Now the `docker` command, which is just a client, is closed properly by `SIGHUP`. However, docker itself has an issue on the `--sig-proxy` option (https://github.com/moby/moby/issues/28872)....
Hi @smileboywtu, thank you for the PR. Could you give me a brief use case that requires this new option? By the way, it looks it's no longer "random" if...
Thank you for the reply. I understand keeping a library simple is always the way to go. However, I'm afraid I assume this is a common use case. Actually I...
I hit the same issue that reported here. Newer electron-builder has a built-in `notarize` option that works out of the box as @KillerCodeMonkey mentioned. On the other hand, the old...
There is another goroutine leak in the `Project`. When you create a `Project` from `docker.NewProject()` without a custom `ClientFactory`, it creates a `Client` from `client.NewDefaultFactory()`. This factory internally creates a...
It's a bit tricky to fix the leak by the default client factory. Because the factory returns the same instance of `APIClient` to all `Create()` calls, so closing the client...
@vdemeester fixed it :)