Microservices - Migration from Monolith
Consider this migration step code snippet for routing traffic:
if (user.isBetaTester) {
routeToNewService();
} else {
routeToOldService();
}
What will happen if a user is not a beta tester?