Skip to content

Commit 59fac1d

Browse files
linter fix
1 parent 976e3fd commit 59fac1d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/handlers/http/ingest.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,13 @@ pub async fn ingest_internal_stream(stream_name: String, body: Bytes) -> Result<
9393
metadata: String::default(),
9494
};
9595
// For internal streams, use old schema
96-
event.into_recordbatch(&schema, None, None, SchemaVersion::V0, &LogSource::default())?
96+
event.into_recordbatch(
97+
&schema,
98+
None,
99+
None,
100+
SchemaVersion::V0,
101+
&LogSource::default(),
102+
)?
97103
};
98104
event::Event {
99105
rb,

0 commit comments

Comments
 (0)