The error message in question is about the monitor session ID but it actually reports the JSON-RPC request ID instead, which is surprising.
Found by inspection. Signed-off-by: Ben Pfaff <[email protected]> --- ovsdb/jsonrpc-server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovsdb/jsonrpc-server.c b/ovsdb/jsonrpc-server.c index 36e50241b040..2589403605d8 100644 --- a/ovsdb/jsonrpc-server.c +++ b/ovsdb/jsonrpc-server.c @@ -1415,7 +1415,7 @@ ovsdb_jsonrpc_monitor_cond_change(struct ovsdb_jsonrpc_session *s, m = ovsdb_jsonrpc_monitor_find(s, params->u.array.elems[0]); if (!m) { - error = ovsdb_syntax_error(request_id, NULL, + error = ovsdb_syntax_error(params->u.array.elems[0], NULL, "unknown monitor session"); goto error; } -- 2.10.2 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
