NServiceBus and Guaranteed Delivery

As a committer on NServiceBus, I'm typically running the code from the master branch head in production. Crazy, huh? I commit made against the master branch not too long ago affected my application code in its ability to properly handle a message. But it didn't cause me any long-term grief.

Why?

The answer is simple. Guaranteed delivery. The messages couldn't be processed so they were forwarded to an error queue. One in the error queue, we were made aware of the problem and were able to fix it in short order. From there, it was a simple matter of moving the messages back to the intended queue for processing and everything picked up where it left off.

Try that with RPC.