vmmd: failure semantics of stats socket the same as others (raise exception), no silent dropping of statistics

This commit is contained in:
Hannes Mehnert 2018-04-03 22:49:50 +02:00
parent d9f8f10b04
commit 54179f55fc
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ let rec read_stats state s =
| Error _ ->
Logs.err (fun m -> m "exception while reading stats") ;
Lwt.catch (fun () -> Lwt_unix.close s) (fun _ -> Lwt.return_unit) >|= fun () ->
state := { !state with Vmm_engine.stats_socket = None }
invalid_arg "stat socket communication issue"
| Ok (hdr, data) ->
let state', outs = Vmm_engine.handle_stat !state hdr data in
state := state' ;