README.md in pwwka-0.13.3 vs README.md in pwwka-0.14.0

- old
+ new

@@ -258,11 +258,11 @@ end ``` #### Errors From Your Handler -By default, all unhandled errors will crash your handler. This is good, because it allows you to recover from most intermittent things. Just be aware of this when configuring your handler so that it gets -restarted after a crash. +By default, handlers will log and ignore garbled payloads (basically payloads that fail to be parsed as JSON). All other errors +will crash the handler, under the assumption that it will restart. This is good, because it allows you to recover from most intermittent things. Just be aware of this when configuring your handler so that it gets restarted after a crash. What happens to the message you received during the error depends: * If the error is not a `StandardError` or a subclass, the message will not be ack'ed and will be waiting on the queue for you when you next fetch a message * If the errors *is* a `StandardError` or a subclass, the message will be ack'ed and removed from the queue.