From cfc3e49fd3c76ff8736a47e82c0ab9075e00d319 Mon Sep 17 00:00:00 2001 From: Diego Imbert Date: Mon, 18 Aug 2025 15:45:39 +0200 Subject: [PATCH] fix --- backend/windmill-common/src/s3_helpers.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/windmill-common/src/s3_helpers.rs b/backend/windmill-common/src/s3_helpers.rs index 13534ac8b4..cdf6d371fa 100644 --- a/backend/windmill-common/src/s3_helpers.rs +++ b/backend/windmill-common/src/s3_helpers.rs @@ -1,4 +1,4 @@ -use crate::error::{self, Result}; +use crate::error::{self}; #[cfg(feature = "parquet")] use aws_sdk_sts::config::ProvideCredentials; #[cfg(feature = "parquet")] @@ -1083,7 +1083,7 @@ pub fn duckdb_connection_settings_internal( } impl ObjectStoreResource { - pub fn get_endpoint_url(&self) -> Result { + pub fn get_endpoint_url(&self) -> error::Result { match self { ObjectStoreResource::S3(s3_resource) => Ok(render_endpoint( s3_resource.endpoint.clone(),