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 ccb8c29 commit dfabf05Copy full SHA for dfabf05
rust_snuba/src/strategies/blq_router.rs
@@ -208,7 +208,9 @@ where
208
// the pipeline cant make progress until this completes anyways so it should be fine
209
let flush_results = self.producer.join(Some(Duration::from_secs(5))).unwrap();
210
self.state = State::Flushing(flush_results);
211
- Ok(())
+ Err(SubmitError::MessageRejected(
212
+ sentry_arroyo::processing::strategies::MessageRejected { message },
213
+ ))
214
}
215
(true, State::Flushing(_)) | (false, State::Flushing(_)) => {
216
Err(SubmitError::MessageRejected(
0 commit comments