If you disable auto accept, explicitly accepting or rejecting a message is your responsibility. If you do neither, the message is stuck in limbo.
Here's an example of application code that does explicit acks:
def on_message(self, event):
try:
process_message(event.message)
event.delivery.update(ACCEPTED)
except:
event.delivery.update(REJECTED)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…