Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We're seeing quite a lot of Error H18 (Request Interrupted) in the logs. How should these be interpreted, since sock=client in all cases I assume that it is the client that is disconnecting. Should it therefore be safe to ignore these?

share|improve this question
I'm also seeing an elevated number of H18 Errors on Heroku since October 1, 2012 (according to a Loggly 'graph "error H18"'). They were almost non existent before then. See graph – Eli Oct 5 '12 at 1:13

1 Answer

up vote 1 down vote accepted

This typically indicates either that the user's network was disconnected (e.g. this happens with some frequency for mobile users) or the end-user closed their browser or similar (e.g. pressed Stop, went to a different page, etc). You can safely ignore this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.