From 1555e5bdb07ed1ab6930c63408beaafac8e2f4d8 Mon Sep 17 00:00:00 2001 From: gsokat Date: Fri, 16 Sep 2022 14:46:41 -0700 Subject: [PATCH] Upgraded django to 4.1.1 --- .circleci/config.yml | 2 +- development.txt | 2 +- eb_sqs/worker/service.py | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 407fb8b..d07fb22 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ jobs: - add_ssh_keys - checkout - run: - name: Install dependencies + name: Install dependencies8 command: | sudo pip install -r development.txt - run: diff --git a/development.txt b/development.txt index 41376c2..2bf0713 100644 --- a/development.txt +++ b/development.txt @@ -1,5 +1,5 @@ boto3==1.24.75 -Django==3.2.15 +Django==4.1.1 mock==4.0.3 moto==4.0.3 requests==2.28.1 \ No newline at end of file diff --git a/eb_sqs/worker/service.py b/eb_sqs/worker/service.py index cfaa4c8..f168ad1 100644 --- a/eb_sqs/worker/service.py +++ b/eb_sqs/worker/service.py @@ -19,9 +19,9 @@ logger = logging.getLogger(__name__) -MESSAGES_RECEIVED = django.dispatch.Signal(providing_args=['messages']) -MESSAGES_PROCESSED = django.dispatch.Signal(providing_args=['messages']) -MESSAGES_DELETED = django.dispatch.Signal(providing_args=['messages']) +MESSAGES_RECEIVED = django.dispatch.Signal() +MESSAGES_PROCESSED = django.dispatch.Signal() +MESSAGES_DELETED = django.dispatch.Signal() class WorkerService(object):