When a HEAD request is received by the server, it raises an exception and this makes our server's log noisy when bots and such hit it. Ideally, this would be handled with a 405 or passed to the process_request method with an indication that it's a HEAD instead of a GET to be handled there.
When a
HEADrequest is received by the server, it raises an exception and this makes our server's log noisy when bots and such hit it. Ideally, this would be handled with a405or passed to theprocess_requestmethod with an indication that it's aHEADinstead of aGETto be handled there.