Microservices - Advanced Patterns
Identify the error in this retry pattern pseudocode:
attempts = 0
while attempts < maxRetries:
callService()
if success:
break
attempts += 1
sleep(0)