Microservices - CI/CD for Microservices
Given the following pseudocode snippet for blue-green deployment traffic switching, which line correctly completes the switch?
active_env = "green"
new_env = "blue"
if active_env == "green":
active_env = _____
else:
active_env = new_env