Microservices - Configuration and Secrets Management
Given this Python code snippet in a microservice:
What will be printed if the environment variable
import os
mode = os.getenv('MODE', 'production')
print(f"Running in {mode} mode")What will be printed if the environment variable
MODE is not set?