Skip to content

Commit

Permalink
Correct quotas check
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Aug 25, 2013
1 parent cafbf6c commit 7209c9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sentry/templates/sentry/projects/quotas.html
Expand Up @@ -15,8 +15,8 @@ <h2>{% trans "Quotas" %}</h2>

<p>{% blocktrans %}Quotas limit on a per-minute basis, which means that they rollover at the start of a new minute. When you attempt to send an event and the project is over it's quota, the client will receive an HTTP 429 (Too Many Requests) response.{% endblocktrans %}</p>

{% if no_quotas %}
<p>{% blocktrans %}The system is not configured to manage quotas.{% endblocktrans %}</p>
{% if not has_quotas %}
<p><strong>{% blocktrans %}Note: The Sentry application is not configured to manage quotas.{% endblocktrans %}</strong></p>
{% elif team_quota %}
<p>{% blocktrans %}Your team has <strong>{{ team_quota }} events per minute</strong> allocated collectively among projects.{% endblocktrans %}</p>
{% elif system_quota %}
Expand Down

0 comments on commit 7209c9c

Please sign in to comment.