Microservices - Resilience Patterns
Identify the bug in this retry with exponential backoff pseudocode:
max_retries = 3 base_delay = 100 retry_count = 1 while retry_count <= max_retries: wait_time = base_delay * (2 ** retry_count) retry_count += 1 print(wait_time)
