Skip to content

Commit

Permalink
fix handling after unknown field (#1744)
Browse files Browse the repository at this point in the history
  • Loading branch information
phiSgr authored Sep 14, 2024
1 parent 93c9243 commit d72172f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/framework-cli/src/utilities/validate_passthrough.rs
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,8 @@ impl DataModelVisitor {
required: column.required,
};
map.next_value_seed(&mut visitor)?;
} else {
map.next_value::<serde::de::IgnoredAny>()?;
}
}
let mut missing_fields: Vec<&str> = Vec::new();
Expand Down

0 comments on commit d72172f

Please sign in to comment.