Skip to content
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
4 changes: 3 additions & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1216,7 +1216,9 @@ np2srv_libnetconf2_config_cb(sr_session_ctx_t *session, uint32_t UNUSED(sub_id),
diff = sr_get_change_diff(session);
rc = nc_server_config_setup_diff(diff);
if (rc) {
/* return value ignored anyway */
/* return value ignored anyway, this is a "done" event and the change is already committed,
* so at least make it visible that the server configuration is now out of sync with it */
ERR("Failed to apply the new server configuration, it is out of sync with the datastore.");
return rc;
}

Expand Down
Loading