You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Automation] Bump Golang version to 1.25.0 (#164)
Update to Go 1.25.0 and use alpine3.22 for the docker image base.
---------
Co-authored-by: obltmachine <obltmachine@users.noreply.github.com>
Co-authored-by: Andrew Kroh <andrew.kroh@elastic.co>
[Automation] Bump Golang version to 1.24.3 (#150)
And use alphine:3.21 in the image because that is what was using to build
the binary.
Co-authored-by: obltmachine <obltmachine@users.noreply.github.com>
Co-authored-by: Andrew Kroh <andrew.kroh@elastic.co>
Close TCP, TLS connections gracefully to avoid data loss (#123)
TCP connections, including TLS connections, acknowledge received data.
Although a simple `net.Conn.Close()` will put all previously written
data on the network, the receiving server may disregard data that it
can't successfully acknowledge.
Graceful acknowledgement and closure can be facilitated by the client
closing writes first, and reading any available data before fully
closing the connection.
.github/workflows/release.yml - Fix YAML string format (#89)
The here-document failed because the of the string format.
I changed them all to use `|` for consistency.