Skip to content

Commit

Permalink
flag fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lcouzens committed Jan 7, 2025
1 parent 415e590 commit 0192e88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions koku/masu/processor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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}
Expand Down

0 comments on commit 0192e88

Please sign in to comment.