fixes history loading slowly due to context switches

This commit is contained in:
2025-01-04 19:13:32 -05:00
parent c69022448f
commit 4dd7cea97d
12 changed files with 278 additions and 122 deletions

View File

@@ -6,7 +6,7 @@ use crate::http::api::setup_api;
use crate::http::websocket::setup_websocket;
use crate::telemetry::management_service::TelemetryManagementService;
use actix_web::{web, App, HttpServer};
use log::info;
use log::{error, info};
use std::sync::Arc;
use tokio_util::sync::CancellationToken;
@@ -29,5 +29,7 @@ pub async fn setup(
.run()
.await?;
error!("http setup end");
Ok(())
}