Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/connectors/data_format.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ pub enum ParseError {
#[error("key-value pair has unexpected number of tokens: {0} instead of 2")]
KeyValueTokensIncorrect(usize),

#[error("field {field_name} with {} is absent in {payload}", path.clone().map_or("no JsonPointer path specified".to_string(), |path| format!("path {path}") ))]
#[error("field {field_name} with {} is absent in {payload}", path.as_ref().map_or("no JsonPointer path specified", |p| p.as_str())]
FailedToExtractJsonField {
field_name: String,
path: Option<String>,
Expand Down
2 changes: 1 addition & 1 deletion src/engine/dataflow/operators/time_column.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ fn push_key_values_to_output<K, C: Cursor, P>(
assert!(time >= *capability.time());
output.session(&capability).give((
(k.clone(), curr_val.clone()),
time.clone().clone(),
time.clone(),
weight,
));
}
Expand Down
Loading