diff options
author | Valery Piashchynski <[email protected]> | 2020-08-27 22:40:13 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-08-27 22:40:13 +0300 |
commit | 10f0c747a7eb1c3ae2a06a4148f4b7ede61f2cdc (patch) | |
tree | 6bd4b625869bac9f160765271860fedfe67c3bac | |
parent | f6e5e0e4801109f0b53b9f637fbf9d3949979a96 (diff) |
update error message
-rw-r--r-- | service/http/errors_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/http/errors_windows.go b/service/http/errors_windows.go index a03c697e..06c2524d 100644 --- a/service/http/errors_windows.go +++ b/service/http/errors_windows.go @@ -9,7 +9,7 @@ import ( "syscall" ) -var errEPIPE = errors.New("WSAECONNABORTED (10053) -> an established connection was aborted") +var errEPIPE = errors.New("WSAECONNABORTED (10053) -> an established connection was aborted by peer") // handleWriteError just check if error was caused by aborted connection on windows func handleWriteError(err error) error { |