diff options
Diffstat (limited to 'src/api/api_server.rs')
-rw-r--r-- | src/api/api_server.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/api/api_server.rs b/src/api/api_server.rs index 41ae6857..41aa0046 100644 --- a/src/api/api_server.rs +++ b/src/api/api_server.rs @@ -107,6 +107,7 @@ async fn handler_inner(garage: Arc<Garage>, req: Request<Body>) -> Result<Respon .and_then(|root_domain| host_to_bucket(&host, root_domain)); let endpoint = Endpoint::from_request(&req, bucket.map(ToOwned::to_owned))?; + debug!("Endpoint: {:?}", endpoint); // Special code path for CreateBucket API endpoint if let Endpoint::CreateBucket { bucket } = endpoint { @@ -306,7 +307,7 @@ async fn resolve_bucket( .bucket_helper() .resolve_global_bucket_name(bucket_name) .await? - .ok_or(Error::NotFound)?) + .ok_or(Error::NoSuchBucket)?) } } |