Microservices - Resilience Patterns
What will be the output of this pseudocode if the service responds in 3 seconds?
try {
response = callService(timeout=4000)
print('Response received')
} catch TimeoutException {
print('Timeout')
}