Skip to content

Commit 912a8df

Browse files
committed
BNCASB-2204: Remove the redis dependency from development.txt and setup.py
1 parent 0a84c9f commit 912a8df

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ python manage.py process_queue --queues queue1,queue2 # process queue1 and queue
8484
python manage.py process_queue --queues queue1,prefix:pr1-,queue2 # process queue1, queue2 and any queue whose name starts with 'pr1-'
8585
```
8686

87-
Use the signals `MESSAGES_RECEIVED`, `MESSAGES_PROCESSED`, `MESSAGES_DELETED` of
87+
Use the signals `MESSAGES_RECEIVED`, `MESSAGES_PROCESSED`, `MESSAGES_DELETED` of the `WorkerService` to get informed about the current SQS batch being processed by the management command.
8888

8989
#### Auto Tasks
9090

development.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ boto3==1.9.86
22
Django==1.10.6
33
mock==2.0.0
44
moto==1.3.13
5-
redis==2.10.5
6-
requests==2.10.0
5+
requests==2.10.0

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@
1010
package_dir={'eb_sqs': 'eb_sqs'},
1111
include_package_data=True,
1212
packages=find_packages(),
13-
description='A SQS worker implementation for Elastic Beanstalk',
13+
description='A simple task manager for AWS SQS',
1414
long_description=README,
1515
url='https://github.com/cuda-networks/django-eb-sqs',
1616
install_requires=[
1717
'boto3>=1.9.86',
1818
'Django>=1.10.6',
19-
'redis>=2.10.5',
2019
'requests>=2.10.0',
2120
]
2221
)

0 commit comments

Comments
 (0)