Skip to content

Commit 0c89aeb

Browse files
committed
Merge branch 'release/0.2.0'
2 parents 05bb688 + 11a6211 commit 0c89aeb

File tree

5 files changed

+304
-474
lines changed

5 files changed

+304
-474
lines changed

.flake8

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,6 @@ ignore =
9191
; Do not perform function calls in argument defaults.
9292
B008,
9393

94-
; all init files
95-
__init__.py:
96-
; ignore not used imports
97-
F401,
98-
; ignore import with wildcard
99-
F403,
100-
; Found wrong metadata variable
101-
WPS410,
102-
10394
per-file-ignores =
10495
; all tests
10596
test_*.py,tests.py,tests_*.py,*/tests/*:
@@ -114,6 +105,15 @@ per-file-ignores =
114105
; Found complex default value
115106
WPS404,
116107

108+
; all init files
109+
__init__.py:
110+
; ignore not used imports
111+
F401,
112+
; ignore import with wildcard
113+
F403,
114+
; Found wrong metadata variable
115+
WPS410,
116+
117117
exclude =
118118
./.git,
119119
./venv,

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# taskiq-memphis
22

3-
This library provides you with memphis broker for taskiq.
3+
This library provides you with memphis broker for taskiq.
44
**You need python version >=3.8**
55

66
### Usage:
@@ -26,7 +26,7 @@ MemphisBroker parameters:
2626
* `port` - memphis server port.
2727
* `username` - username.
2828
* `connection_token` - connection token.
29-
* `password` - password for username.
29+
* `password` - password for username.
3030
* `result_backend` - custom result backend.
3131
* `task_id_generator` - custom task_id genertaor.
3232
* `reconnect` - turn on/off reconnection while connection is lost.
@@ -77,11 +77,11 @@ Memphis `station` parameters you can configure:
7777
* `schema_name` - name of the schema. (You can create it only via memphis UI now)
7878
* `send_poison_msg_to_dls` - send poisoned message to dead letter station or not.
7979
* `send_schema_failed_msg_to_dls` - send schema failed message to dead letter station or not.
80-
* `tiered_storage_enabled` - tiered storage enabled or not.
81-
80+
* `tiered_storage_enabled` - tiered storage enabled or not.
81+
8282
Memphis `producer` parameters you can configure:
8383
* `producer_name` - producer name. Required.
84-
* `generate_random_suffix` - add suffix to producer name. Default - `True`.
84+
* `generate_random_suffix` - add suffix to producer name. Default - `True`.
8585
**DON'T SET THIS VARIABLE TO `FALSE` IF YOU WANT TO USE MORE THAN ONE PRODUCER.**
8686

8787
Memphis `produce` method parameters you can configure:
@@ -98,7 +98,7 @@ Memphis `consumer` parameters you can configure:
9898
* `batch_max_time_to_wait_ms` - max time in milliseconds to wait between pulls.
9999
* `max_ack_time_ms` - max time for ack a message in milliseconds.
100100
* `max_msg_deliveries` - max number of message deliveries.
101-
* `generate_random_suffix` - concatenate a random suffix to consumer's name.
101+
* `generate_random_suffix` - concatenate a random suffix to consumer's name.
102102
**DON'T SET THIS VARIABLE TO `FALSE` IF YOU WANT TO USE MORE THAN ONE CONSUMER.**
103103
* `start_consume_from_sequence` - start consuming from a specific sequence.
104104
* `last_messages` - consume the last N messages.

0 commit comments

Comments
 (0)