I have a basic JSON error responder:
format.json { render json: errors, status: :unprocessable_entity }
In development, running Puma, I get back:
Status Code: 422 Unprocessable Entity
In production, running Unicorn, I get back:
Status Code: 422
Can anyone think of a reason that the message would be missing?

