Skip to content

Commit

Permalink
Revert runtime configuration changes
Browse files Browse the repository at this point in the history
  • Loading branch information
saulecabrera committed Jul 8, 2024
1 parent 9dd38b3 commit 7914569
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/core/src/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ pub(crate) fn new(shared_config: SharedConfig) -> Result<Runtime> {
// Due to an issue with our custom serializer and property accesses
// we're disabling this temporarily. It will be enabled once we have a
// fix forward.
.override_json_parse_and_stringify(true)
.javy_json(true);
.override_json_parse_and_stringify(false)
.javy_json(false);

Runtime::new(std::mem::take(config))
}

0 comments on commit 7914569

Please sign in to comment.