Skip to content

Commit

Permalink
Upgraded django to 4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gurkansokat committed Sep 16, 2022
1 parent d59ddfe commit 1555e5b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- add_ssh_keys
- checkout
- run:
name: Install dependencies
name: Install dependencies8
command: |
sudo pip install -r development.txt
- run:
Expand Down
2 changes: 1 addition & 1 deletion development.txt
Original file line number Diff line number Diff line change
@@ -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
6 changes: 3 additions & 3 deletions eb_sqs/worker/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 1555e5b

Please sign in to comment.