We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce8729c commit 08f9088Copy full SHA for 08f9088
backend/notifications/tasks.py
@@ -1,6 +1,5 @@
1
import logging
2
from uuid import uuid4
3
-from pycon.celery_utils import OnlyOneAtTimeTask
4
from notifications.models import SentEmail
5
from django.db import transaction
6
from pycon.celery import app
@@ -11,7 +10,6 @@
11
10
12
13
@app.task(
14
- base=OnlyOneAtTimeTask,
15
bind=True,
16
autoretry_for=(Exception,),
17
retry_backoff=5,
infrastructure/applications/cluster/iam.tf
@@ -32,7 +32,7 @@ data "aws_iam_policy_document" "server_role_policy" {
32
effect = "Allow"
33
actions = [
34
"iam:PassRole",
35
- "ses:*",
+ # "ses:*",
36
"ecs:*",
37
"ecr:*",
38
]
0 commit comments