Skip to content

Commit e46ee5f

Browse files
correct warning message
1 parent df59fde commit e46ee5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/handlers/http/modal/utils/ingest_utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ fn verify_dataset_fields_count(stream_name: &str) -> Result<(), PostError> {
221221
if fields_count > dataset_fields_warn_threshold as usize {
222222
tracing::warn!(
223223
"Fields count {0} for dataset {1} has exceeded the warning threshold of {2} fields, Parseable recommends creating a new dataset.",
224-
dataset_fields_warn_threshold,
224+
fields_count,
225225
stream_name,
226226
dataset_fields_warn_threshold);
227227
}

0 commit comments

Comments
 (0)