<div dir="ltr">I have a default route attached to dispatch-rules which was annoying the webserver by catching requests for /inform.<div><br></div><div>0) Is /inform in the docs?</div><div><br></div><div>1) Where are /inform requests coming from, and what are they used for?</div>
<div><br></div><div>2) Is there a way of turning them off if not needed for my application?</div><div><br></div><div>3) I fixed my default route by just passing through /inform requests:</div><div><br></div><div><div>(define request-url (request-uri req))</div>
<div>(when (not (equal? (url->string request-url) "/inform"))</div><div>    (do-my-processing)</div><div>(next-dispatcher))<br></div></div><div><br></div><div>Is this a legit way of handling them?</div><div><br>
</div><div>4) Are there other silent, periodic requests like /inform that need to be passed through in the same way?</div><div><br></div><div>Thanks.</div><div><br></div><div>Matthew Butterick<br></div><div><br></div><div>
<br></div><div><br></div></div>