Retry events - can we control the interval of resending

In my Persistent Subscription Group I have the following settings:

Message Timeout (ms) : 10000

Max Retry Count: 10

This has been working fine for us, but we have a problem where an Event is being processed, and throws an Exception very quickly (we are creating a Database off the back of the Event)

The retry is happening almost immediately. Is there a way we can delay the retries from an Event Store configuration parameter (we had wrongly assumed Message Timeout would do this be default)

Thanks in advance.

Don't nak the message immediately (or just let it timeout) then it
will get retried in message timeout ms

OK, yeah that makes sense.

We have tested the change locally and it’s behaving itself the way we want.

Thanks for the quick response!.