In the method 'RemoveEstateReadModel' add a retry block around the contents of the loop as follows ``` foreach (Guid estateId in estateIdList) { await Retry.For(() => { // Delete the read model }); } ```