Skip to content

Commit b8606b3

Browse files
author
Devdutt Shenoi
committed
fix: custom partitioned file names
1 parent ef27f97 commit b8606b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/event/format/json.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,8 +288,8 @@ impl EventFormat for Event {
288288
custom_partition_values
289289
.iter()
290290
.sorted_by_key(|v| v.0)
291-
.map(|(key, value)| format!("{key}={value}."))
292-
.join("")
291+
.map(|(key, value)| format!("{key}={value}"))
292+
.join(".")
293293
);
294294

295295
if let Some(JsonPartition { batch, .. }) = json_partitions.get_mut(&prefix) {

0 commit comments

Comments
 (0)