All the logs

This commit is contained in:
Timo Kösters 2023-02-23 11:49:35 +01:00
parent 2316d89048
commit b7c99788e4
No known key found for this signature in database
GPG key ID: 0B25E636FBA7E4CB
2 changed files with 6 additions and 2 deletions

View file

@ -40,7 +40,7 @@ use tokio::{
select,
sync::{mpsc, Mutex, Semaphore},
};
use tracing::{error, warn};
use tracing::{error, info, warn};
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
pub enum OutgoingKind {
@ -683,7 +683,9 @@ impl Service {
where
T: Debug,
{
info!("Waiting for permit");
let permit = self.maximum_requests.acquire().await;
info!("Got permit");
let response = tokio::time::timeout(
Duration::from_secs(2 * 60),
server_server::send_request(destination, request),