diff --git a/src/registrar/views/domain.py b/src/registrar/views/domain.py index 48d537562..094ad86da 100644 --- a/src/registrar/views/domain.py +++ b/src/registrar/views/domain.py @@ -6,7 +6,6 @@ inherit from `DomainPermissionView` (or DomainInvitationPermissionDeleteView). """ import logging -import time from django.contrib import messages from django.contrib.messages.views import SuccessMessageMixin from django.db import IntegrityError @@ -150,7 +149,6 @@ class DomainView(DomainBaseView): context["security_email"] = None return context context["security_email"] = security_email - time.sleep(100) return context def in_editable_state(self, pk): diff --git a/src/run.sh b/src/run.sh index e7512b28d..04987c154 100755 --- a/src/run.sh +++ b/src/run.sh @@ -6,4 +6,4 @@ set -o pipefail # Make sure that django's `collectstatic` has been run locally before pushing up to any environment, # so that the styles and static assets to show up correctly on any environment. -gunicorn --worker-class=gevent --worker-connections=1000 --workers=1 registrar.config.wsgi -t 60 +gunicorn --worker-class=gevent registrar.config.wsgi -t 60 \ No newline at end of file