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 09b36a6 commit 5edf6cfCopy full SHA for 5edf6cf
tap-agent/src/agent/sender_allocation.rs
@@ -554,7 +554,16 @@ impl SenderAllocationState {
554
previous_rav
555
),
556
)
557
- .await?;
+ .await
558
+ .inspect_err(|err| {
559
+ 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. \
563
+ If the problem persists after doing so please open an issue"
564
+ );
565
+ }
566
+ })?;
567
568
let rav_response_time = rav_response_time_start.elapsed();
569
RAV_RESPONSE_TIME
0 commit comments