Microservices - Resilience Patterns
Given this pseudocode snippet, what will happen if the service call takes 7 seconds?
try {
response = callService(timeout=5000)
print('Success')
} catch TimeoutException {
print('Timeout occurred')
}