From 3cbaabed3412835fa6816bb8d4ee2d0cc5edef35 Mon Sep 17 00:00:00 2001 From: Andrej Mickov Date: Fri, 13 Mar 2026 01:16:35 +0100 Subject: [PATCH] Updated prefix --- lib/storage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/storage.ts b/lib/storage.ts index 5c25cda..b3eacd6 100644 --- a/lib/storage.ts +++ b/lib/storage.ts @@ -185,7 +185,7 @@ function partitionPathFromSegmentId(id: string): string { } function buildPartitionedFilePath(prefix: string, id: string): string { - return path.join(DATA_DIR, partitionPathFromSegmentId(id), `${prefix}-${id}.parquet`); + return path.join(DATA_DIR, prefix, partitionPathFromSegmentId(id), `${prefix}-${id}.parquet`); } function buildVehicleFile(id: string): string {