Microservices - Resilience Patterns
This code snippet tries to implement a fallback but has a bug:
def get_data():
try:
return call_service()
except:
call_fallback()
What is the bug here?