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 8a47504 commit 2e3b93cCopy full SHA for 2e3b93c
tap-agent/src/agent/sender_allocation.rs
@@ -555,16 +555,14 @@ impl SenderAllocationState {
555
),
556
)
557
.await
558
- .inspect_err(|err| match &err {
559
- jsonrpsee::core::ClientError::RequestTimeout => {
+ .inspect_err(|err| {
+ if let jsonrpsee::core::ClientError::RequestTimeout = &err {
560
warn!(
561
"Rav request is timing out, maybe request_timeout_secs is too \
562
- low in your config file, try adding more secs to the value"
+ low in your config file, try adding more secs to the value. \
563
+ If the problem persists after doing so please open an issue"
564
);
565
}
- _ => {
566
- warn!("An error occured {:?}", err);
567
- }
568
})?;
569
570
let rav_response_time = rav_response_time_start.elapsed();
0 commit comments