Re: [go-nuts] Need help running "go get" on self hosted git server

2023-12-18 Thread 'Dan Kortschak' via golang-nuts
On Sun, 2023-12-17 at 07:06 -0800, Brijesh Wawdhane wrote: > I added a go-import meta tag to my git server's website on the repo > page and it looks like > > https://brijesh.dev/kairos.git";> > > but when I try running "go get brijesh.dev/kairos" I get an error > saying 'go: unrecognized import p

[go-nuts] [security] Vulnerability in golang.org/x/crypto/ssh

2023-12-18 Thread Roland Shoemaker
Hello gophers, Version v0.17.0 of golang.org/x/crypto fixes a protocol weakness in the golang.org/x/crypto/ssh package that allowed a MITM attacker to compromise the integrity of the secure channel before it was established, allowing them to prevent transmission of a number of messages immediately

Re: [go-nuts] Re: go mod download fails on docker for 1.20 (but not for 1.18)

2023-12-18 Thread Eduardo Luís
Did anyone found a fix for this? I still have this problem after 6 months. It allows me to up a single container but it seems to have a 5 minute cooldown before I can up another one without an error, which takes a long time on projects with multiple services. Error example on Ubuntu22 with golan

Re: [go-nuts] Need help running "go get" on self hosted git server

2023-12-18 Thread Jan Mercl
On Mon, Dec 18, 2023 at 2:19 PM Brijesh Wawdhane wrote: > I added a go-import meta tag to my git server's website on the repo page and it looks like > > https://brijesh.dev/kairos.git";> > > but when I try running "go get brijesh.dev/kairos" I get an error saying 'go: unrecognized import path "br

[go-nuts] Need help running "go get" on self hosted git server

2023-12-18 Thread Brijesh Wawdhane
I added a go-import meta tag to my git server's website on the repo page and it looks like https://brijesh.dev/kairos.git";> but when I try running "go get brijesh.dev/kairos" I get an error saying 'go: unrecognized import path "brijesh.dev/kairos": reading https://brijesh.dev/kairos?go-get=1:

Re: [go-nuts] unix.Select with fd gotten from named pipe on macos behaves differently compared to linux

2023-12-18 Thread 'TheDiveO' via golang-nuts
It actually *does *work (again, there's a unit test as well as working code for five years now), but good to know that it is actually useless, so this is something to remove as part of the usual maintenance chores. On Sunday, December 17, 2023 at 6:43:51 AM UTC+1 Kurtis Rader wrote: On Fri, Dec

Re: [go-nuts] unix.Select with fd gotten from named pipe on macos behaves differently compared to linux

2023-12-18 Thread 'TheDiveO' via golang-nuts
Please note that the unit test I linked to tests on the "writing end" of the pipe. In fact, I wrote in the OP right in my first sentence: > *Hi, I need to detect on the producer side (writing end) of a named pipe when the consumer (reading end) has disconnect/closed. * I'm afraid, but you are n