Skip to content

Commit 566ea15

Browse files
convert threshold as usize
1 parent 5ff122a commit 566ea15

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
@@ -220,7 +220,7 @@ fn verify_dataset_fields_count(stream_name: &str) -> Result<(), PostError> {
220220
tracing::warn!(
221221
"Total fields in dataset {0} has reached the warning threshold of {1}. Ingestion will not be possible after reaching {2} fields. We recommend creating a new dataset.",
222222
stream_name,
223-
dataset_fields_warn_threshold,
223+
dataset_fields_warn_threshold as usize,
224224
PARSEABLE.options.dataset_fields_allowed_limit
225225
);
226226
}

0 commit comments

Comments
 (0)