Skip to content

Commit c699364

Browse files
committed
fix logs
1 parent 37e4ece commit c699364

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stackslib/src/net/httpcore.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1907,7 +1907,7 @@ pub fn send_http_request(
19071907
if Instant::now().saturating_duration_since(start) > timeout {
19081908
return Err(io::Error::new(
19091909
io::ErrorKind::WouldBlock,
1910-
"Timed out while receiving request",
1910+
"Timed out while sending request",
19111911
));
19121912
}
19131913
// Heartbeat log
@@ -1960,7 +1960,7 @@ pub fn send_http_request(
19601960
if Instant::now().saturating_duration_since(start) > timeout {
19611961
return Err(io::Error::new(
19621962
io::ErrorKind::WouldBlock,
1963-
"Timed out while receiving request",
1963+
"Timed out while receiving response",
19641964
));
19651965
}
19661966
// Heartbeat log

0 commit comments

Comments
 (0)