Skip to content

Commit 2212d14

Browse files
committed
BNCASB-2204: Updating the project version number
Also resolving PR comments.
1 parent 912a8df commit 2212d14

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The retry call supports the `delay` and `execute_inline` arguments in order to d
6969

7070
#### Executing Tasks
7171

72-
Another way of executing tasks is to use the Django command `process_queue`.
72+
In order to execute tasks, use the Django command `process_queue`.
7373
This command can work with one or more queues, reading from the queues infinitely and executing tasks as they come-in.
7474

7575
```bash

eb_sqs/worker/worker.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,5 @@ def _enqueue_task(self, worker_task, delay, execute_inline, is_retry, count_retr
122122

123123
def _execute_task(self, worker_task):
124124
# type: (WorkerTask) -> Any
125-
try:
126-
result = worker_task.execute()
127-
return result
128-
finally:
129-
pass
125+
result = worker_task.execute()
126+
return result

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='django-eb-sqs',
9-
version='1.35',
9+
version='1.36',
1010
package_dir={'eb_sqs': 'eb_sqs'},
1111
include_package_data=True,
1212
packages=find_packages(),

0 commit comments

Comments
 (0)