We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 11e32d6 + abe9059 commit 8f9a596Copy full SHA for 8f9a596
ocaml/xapi/api_server.ml
@@ -195,11 +195,8 @@ let callback is_json req bio _ =
195
let jsoncallback req bio _ =
196
let fd = Buf_io.fd_of bio in (* fd only used for writing *)
197
let body = Http_svr.read_body ~limit:Db_globs.http_limit_max_rpc_size req bio in
198
- debug "Here in jsoncallback";
199
try
200
- debug "Got the jsonrpc body: %s" body;
201
let rpc = Jsonrpc.call_of_string body in
202
203
let response = Jsonrpc.a_of_response
204
~empty:Bigbuffer.make
205
~append:(fun buf s -> Bigbuffer.append_substring buf s 0 (String.length s))
0 commit comments