From e4863881999f22732be0fe942cc9badb4e06391f Mon Sep 17 00:00:00 2001 From: Denis Cornehl Date: Thu, 29 Feb 2024 16:44:27 +0100 Subject: [PATCH] add comment about S3 ordering for build logs --- src/web/build_details.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/build_details.rs b/src/web/build_details.rs index b5052ca22..9c2060e1e 100644 --- a/src/web/build_details.rs +++ b/src/web/build_details.rs @@ -89,7 +89,7 @@ pub(crate) async fn build_details_handler( ( String::from_utf8(file.0.content).context("non utf8")?, storage - .list_prefix(&prefix) + .list_prefix(&prefix) // the result from S3 is ordered by key .await .map_ok(|path| { path.strip_prefix(&prefix)