Feature Flag

You might say

Open the new recommendation feature to employees first; if error rate rises, turn off the new path immediately without redeploying.

A feature flag enables or disables a code path at runtime according to configuration or user conditions.The same deployed code can send employees to a new recommendation page while other people stay on the old path; closing the flag stops the new path on anomaly. It separates deploying code from deciding who gets a feature. Permanently deleting code or restoring a whole old version is not a feature flag itself.
Know first
Feature FlagFeature Toggle
Further reading