From e5193ed762a4bacf728401d416348d41aa4ae153 Mon Sep 17 00:00:00 2001 From: Ciro Spaciari Date: Mon, 30 Dec 2024 21:57:07 -0800 Subject: [PATCH] comment --- src/s3.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/s3.zig b/src/s3.zig index 403a58f94da0b4..157282ed1fa267 100644 --- a/src/s3.zig +++ b/src/s3.zig @@ -2303,7 +2303,7 @@ pub const MultiPartUpload = struct { } }; pub fn createNotFoundError(globalThis: *JSC.JSGlobalObject, path: []const u8) JSC.JSValue { - //TODO: cache the structure of the error + //TODO: remove this function .not_found should return the proper S3Error const js_err = globalThis .createErrorInstance("File {} not found", .{bun.fmt.quote(path)}).toJS(globalThis); // make it consistent with S3 services