feat: add http server isolate
CI / format (push) Has been cancelled
CI / test (push) Has been cancelled
CI / packaging (push) Has been cancelled

This commit is contained in:
Tien Do Nam
2026-07-17 04:06:04 +02:00
parent b913061a76
commit b511ac7056
22 changed files with 3905 additions and 2548 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
use super::{ClientError, ResponseExt, ResultWithPublicKey};
use crate::http;
use crate::http::client::url::{ApiVersion, TargetUrl};
use crate::http::dto::ProtocolType;
use crate::http;
use crate::{crypto, util};
use lru::LruCache;
use reqwest::{Response, StatusCode};
+1 -1
View File
@@ -36,7 +36,7 @@ impl FileContent {
FileContent::Stream(rx) => {
tracing::info!("Reading file content via byte stream from application");
rx
},
}
FileContent::Path(path) => {
tracing::info!("Reading file content from path: {}", path.display());
let (tx, rx) = mpsc::channel(FILE_CHANNEL_CAPACITY);