Skip to content

Commit 0ef48a2

Browse files
committed
BNCASB-2204: Fixing some more changes
1 parent 15082db commit 0ef48a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

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

6868
**NOTE:** `retry()` throws a `MaxRetriesReachedException` exception if the maximum number of retries is reached.
6969

70-
#### Executing Tasks without Elastic Beanstalk
70+
#### Executing Tasks
7171

7272
Another way of executing tasks is to 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.

eb_sqs/tests/worker/tests_worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def setUp(self):
7070
factory_mock.create.return_value = self.worker
7171
settings.WORKER_FACTORY = factory_mock
7272

73-
def test_worker_execution_no_group(self):
73+
def test_worker_execution(self):
7474
msg = '{"id": "id-1", "retry": 0, "queue": "default", "maxRetries": 5, "args": [], "func": "eb_sqs.tests.worker.tests_worker.dummy_task", "kwargs": {"msg": "Hello World!"}}'
7575

7676
result = self.worker.execute(msg, 2)

0 commit comments

Comments
 (0)