refactor(deps): replace tokio Mutex/join!, add NetworkErrorKind enum, remove reqwest from error types

This commit is contained in:
teernisse
2026-03-06 15:22:37 -05:00
parent 3a4fc96558
commit 4d41d74ea7
4 changed files with 52 additions and 21 deletions

View File

@@ -55,7 +55,8 @@ impl GraphqlClient {
.await
.map_err(|e| LoreError::GitLabNetworkError {
base_url: self.base_url.clone(),
source: Some(e),
kind: crate::core::error::NetworkErrorKind::Other,
detail: Some(format!("{e:?}")),
})?;
let status = response.status();