From 64530262bbd0d28a32be4f82687eef3b4dbe932e Mon Sep 17 00:00:00 2001 From: Anton Alexeyev Date: Wed, 30 Jul 2025 16:55:30 +0700 Subject: [PATCH] Allow to get blob metadata without authorization (#9615) Since getting the blob itself does not require authorization Signed-off-by: Anton Alexeyev --- services/datalake/pod-datalake/src/server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/datalake/pod-datalake/src/server.ts b/services/datalake/pod-datalake/src/server.ts index d670a4e5cf..69a0fac15b 100644 --- a/services/datalake/pod-datalake/src/server.ts +++ b/services/datalake/pod-datalake/src/server.ts @@ -204,7 +204,7 @@ export async function createServer ( // Blob meta - app.get('/meta/:workspace/:name', withAuthorization, withBlob, wrapRequest(ctx, 'getMeta', handleMetaGet)) + app.get('/meta/:workspace/:name', withBlob, wrapRequest(ctx, 'getMeta', handleMetaGet)) app.put('/meta/:workspace/:name', withAuthorization, withBlob, wrapRequest(ctx, 'putMeta', handleMetaPut))