Compare commits

...

11 Commits

Author SHA1 Message Date
Zane Schepke 983b95db94 add test log 2024-06-17 19:06:20 -04:00
Zane Schepke 6007bb5844 add logging 2024-06-17 18:48:55 -04:00
Zane Schepke dad215c6e3 Revert "add logging"
This reverts commit 19f7e1ad70.
2024-06-17 18:47:28 -04:00
Zane Schepke ec734bb9d1 Revert "fix error"
This reverts commit dcb66576da.
2024-06-17 18:47:24 -04:00
Zane Schepke 6c84390030 Revert "fix error"
This reverts commit 9e5fee9608.
2024-06-17 18:47:18 -04:00
Zane Schepke 69da67e4bf Revert "fix error"
This reverts commit 87ca17f79b.
2024-06-17 18:47:06 -04:00
Zane Schepke 87ca17f79b fix error 2024-06-17 18:42:15 -04:00
Zane Schepke 9e5fee9608 fix error 2024-06-17 18:36:21 -04:00
Zane Schepke dcb66576da fix error 2024-06-17 18:24:13 -04:00
Zane Schepke 19f7e1ad70 add logging 2024-06-17 17:13:58 -04:00
Zane Schepke 48e559e72e change topology timeout 2024-06-17 10:23:06 -04:00
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ const DEFAULT_LOOP_COVER_STREAM_AVERAGE_DELAY: Duration = Duration::from_millis(
const DEFAULT_MESSAGE_STREAM_AVERAGE_DELAY: Duration = Duration::from_millis(20);
const DEFAULT_AVERAGE_PACKET_DELAY: Duration = Duration::from_millis(50);
const DEFAULT_TOPOLOGY_REFRESH_RATE: Duration = Duration::from_secs(5 * 60); // every 5min
const DEFAULT_TOPOLOGY_RESOLUTION_TIMEOUT: Duration = Duration::from_millis(5_000);
const DEFAULT_TOPOLOGY_RESOLUTION_TIMEOUT: Duration = Duration::from_millis(10_000);
const DEFAULT_MAX_STARTUP_GATEWAY_WAITING_PERIOD: Duration = Duration::from_secs(70 * 60); // 70min -> full epoch (1h) + a bit of overhead
// Set this to a high value for now, so that we don't risk sporadic timeouts that might cause
+4 -1
View File
@@ -9,7 +9,7 @@ use serde::{Deserialize, Serialize};
use std::fmt::Display;
use std::time::Duration;
use thiserror::Error;
use tracing::warn;
use tracing::{info, warn};
use url::Url;
pub use reqwest::IntoUrl;
@@ -512,6 +512,9 @@ where
E: DeserializeOwned + Display,
{
let status = res.status();
info!("test");
info!(status);
info!(res);
if !allow_empty {
if let Some(0) = res.content_length() {