We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 869ea6d commit da70de9Copy full SHA for da70de9
proxy-http-client/src/poster.rs
@@ -36,7 +36,8 @@ impl HttpBroadcast for Poster {
36
Ok(bytes) => tracing::debug!("{:?}", bytes),
37
Err(err) => tracing::debug!("ERROR: {}", err.to_string()),
38
}
39
- status < 400
+ // if we get a client error, drop the message entirely; if we get a server error, requeue the message for later
40
+ status < 500
41
} else {
42
let result = result.unwrap_err();
43
tracing::error!("response is error {}", result.to_string());
0 commit comments