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
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.
Adding GCS output and fixing linting issues for few outputs (#46)
* Adding GCS output
* fixing linting issues
* adding comments and checking some more returned errors
* update changelog
* update test_go with environment variable again
* adding possibility to connect to public bucket (without credentials) and removing environment variables
* go mod tidy
* update readme