Re: [go-nuts] How do you keep your modules up-to-date?

2019-05-30 Thread James Hartig
ounds like you've got that solved. > > -- Marcin > > On Thu, May 30, 2019 at 7:55 AM James Hartig > wrote: > >> What's the best way to automatically always pull the latest >> release/commit for certain repos? We use gerrit internally so all of our >> imp

[go-nuts] How do you keep your modules up-to-date?

2019-05-30 Thread James Hartig
What's the best way to automatically always pull the latest release/commit for certain repos? We use gerrit internally so all of our import paths for internal packages start with something like gerrit.corp. We have over 50 different repos and it would be painstaking to have to update (pull lates

[go-nuts] Help debugging atomic.AddInt64 usage

2018-08-02 Thread James Hartig
We are having a weird case where an atomic number was increasing and not decreasing, despite calls to decrease it. Hopefully, someone on the list can point out something I'm doing wrong with the atomic package. The function with the issue is: func UnhealthyOverConcurrent(prefix string, limit in

Re: [go-nuts] Re: http: TLS handshake error from :: EOF

2017-05-17 Thread James Hartig
d when the handshake was never started. Should I file a bug to remove the log in that case? On Wednesday, May 3, 2017 at 9:45:00 AM UTC-4, James Hartig wrote: > > We're also seeing 100k of these errors per day per server. The majority of > the time its just a result of: > cli

Re: [go-nuts] Re: http: TLS handshake error from :: EOF

2017-05-03 Thread James Hartig
We're also seeing 100k of these errors per day per server. The majority of the time its just a result of: client SYN server SYN-ACK client FIN server FIN-ACK or client SYN server SYN-ACK Retransmission Retransmission RST ... The error if the version is unsupported is: http: TLS handshake error

[go-nuts] Missing x509.MarshalPKCS8PrivateKey

2017-03-24 Thread James Hartig
There's x509.ParsePKCS8PrivateKey but no x509.MarshalPKCS8PrivateKey, which is unlike the other x509.ParseTPrivateKey and x509.MarshalTPrivateKey combinations. It seems trivial, so I'm curious why it was omitted? Assuming no objections, I'd be willing to make a patch in gerrit adding this. --