diff --git a/koku/masu/processor/__init__.py b/koku/masu/processor/__init__.py index 11bd5f7319..cba2dbf898 100644 --- a/koku/masu/processor/__init__.py +++ b/koku/masu/processor/__init__.py @@ -70,11 +70,11 @@ def is_ocp_on_cloud_summary_disabled(account): # pragma: no cover return res -def is_rate_limit_customer_large(account): # pragma: no cover - """Flag the customer as large and to be rate limited.""" +def is_customer_large(account): # pragma: no cover + """Flag the customer as large.""" account = convert_account(account) context = {"schema": account} - return UNLEASH_CLIENT.is_enabled("cost-management.backend.large-customer.rate-limit", context) + return UNLEASH_CLIENT.is_enabled("cost-management.backend.large-customer", context) def is_customer_penalty(account): # pragma: no cover @@ -84,7 +84,7 @@ def is_customer_penalty(account): # pragma: no cover return UNLEASH_CLIENT.is_enabled("cost-management.backend.penalty-customer", context) -def is_customer_large(account): # pragma: no cover +def is_rate_limit_customer_large(account): # pragma: no cover """Flag the customer as large and to be rate limited.""" account = convert_account(account) context = {"schema": account}