Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mgmtd: don't add implicit state data when reading config from file (backport #16529) #16552

Merged
merged 1 commit into from
Aug 10, 2024
Merged
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
3 changes: 2 additions & 1 deletion mgmtd/mgmt_ds.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ static int mgmt_ds_load_cfg_from_file(const char *filepath,

*dnode = NULL;
ret = lyd_parse_data_path(ly_native_ctx, filepath, LYD_JSON,
LYD_PARSE_STRICT, 0, dnode);
LYD_PARSE_NO_STATE | LYD_PARSE_STRICT,
LYD_VALIDATE_NO_STATE, dnode);

if (ret != LY_SUCCESS) {
if (*dnode)
Expand Down
Loading