Investigate what context feature flag calls are made in
- We may want to make current request actor the default for feature flag calls (e.g.
Feature.enabled?(:flag)) - I see a lot of feature flags without actors are not necessarily request based - they are either on/off, no rollouts. So maybe
:instanceactor is better - Also we need to see if there are many feature flag calls outside of
SafeRequestStorecontext. If they are then, the current request actor is not suitable. For example the defer sidekiq feature flags may be one such case
Edited by Thong Kuah