From ea914efbe24c80b6e1523471a7369d79ac07deb0 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Sat, 18 Oct 2025 20:16:39 -0400 Subject: [WARP] Use download provider API instead of reqwest Unfortunately we cannot use reqwest because enterprise servers provide invalid certificates, so we must use the enterprise download provider to bypass certain certificate validations --- plugins/warp/src/container.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'plugins/warp/src/container.rs') diff --git a/plugins/warp/src/container.rs b/plugins/warp/src/container.rs index 8c76bc8f..b5e92bc7 100644 --- a/plugins/warp/src/container.rs +++ b/plugins/warp/src/container.rs @@ -35,6 +35,10 @@ pub enum ContainerError { FailedIO(io::ErrorKind), #[error("source {0} does not have an available path")] SourcePathUnavailable(SourceId), + #[error("search failed: {0}")] + SearchFailed(String), + #[error("failed to commit source '{0}': {1}")] + CommitFailed(SourceId, String), } /// Represents the ID for a single container source. -- cgit v1.3.1