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 a76d340 + 439df25 commit 1e77e7cCopy full SHA for 1e77e7c
ocaml/xapi/api_server.ml
@@ -192,11 +192,8 @@ let callback is_json req bio _ =
192
let jsoncallback req bio _ =
193
let fd = Buf_io.fd_of bio in (* fd only used for writing *)
194
let body = Http_svr.read_body ~limit:Xapi_globs.http_limit_max_rpc_size req bio in
195
- debug "Here in jsoncallback";
196
try
197
- debug "Got the jsonrpc body: %s" body;
198
let rpc = Jsonrpc.call_of_string body in
199
200
let response = Jsonrpc.a_of_response
201
~empty:Bigbuffer.make
202
~append:(fun buf s -> Bigbuffer.append_substring buf s 0 (String.length s))
0 commit comments