Skip to content

Commit b352cb4

Browse files
committed
Merge branch 'release/0.11.1'
2 parents c2cebfb + 336974b commit b352cb4

File tree

15 files changed

+761
-600
lines changed

15 files changed

+761
-600
lines changed

docs/available-components/schedule-sources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Currently we have only one schedule source.
1010
## RedisScheduleSource
1111

1212
This source is capable of adding new schedules in runtime. It uses Redis as a storage for schedules.
13-
To use this source you need to install `taskiq-redids` package.
13+
To use this source you need to install `taskiq-redis` package.
1414

1515
```python
1616
from taskiq_redis import RedisScheduleSource

docs/guide/cli.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ when you modify ignored files. To disable this functionality pass `--do-not-use-
9595
* `--receiver` - python path to custom receiver class.
9696
* `--receiver_arg` - custom args for receiver.
9797
* `--ack-type` - Type of acknowledgement. This parameter is used to set when to acknowledge the task. Possible values are `when_received`, `when_executed`, `when_saved`. Default is `when_saved`.
98-
- `--shutdown-timeout` - maximum amount of time for graceful broker's shutdown in seconds.
98+
* `max-tasks-per-child` - maximum number of tasks to be executed by a single worker process before restart.
99+
* `--shutdown-timeout` - maximum amount of time for graceful broker's shutdown in seconds.
100+
* `--wait-tasks-timeout` - if cannot read new messages from the broker or maximum number of tasks is reached, worker will wait for all current tasks to finish. This parameter sets the maximum amount of time to wait until shutdown.
99101

100102
## Scheduler
101103

docs/guide/scheduling-tasks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Now we can use this source to add new schedules in runtime. Here's an example:
118118
)
119119
```
120120

121-
Or if you want ot use cron schedules instead, just use `schedule_by_cron` method.
121+
Or if you want to use cron schedules instead, just use `schedule_by_cron` method.
122122

123123
```python
124124
await my_task.schedule_by_cron(

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
},
1212
"packageManager": "[email protected]",
1313
"devDependencies": {
14-
"@vuepress/bundler-vite": "2.0.0-rc.6",
14+
"@vuepress/bundler-vite": "2.0.0-rc.9",
1515
"mermaid": "^10.8.0",
1616
"sass-loader": "^14.1.0",
1717
"vue": "^3.4.15",
18-
"vuepress": "2.0.0-rc.6",
19-
"vuepress-plugin-search-pro": "2.0.0-rc.22",
20-
"vuepress-theme-hope": "2.0.0-rc.22"
18+
"vuepress": "2.0.0-rc.9",
19+
"vuepress-plugin-search-pro": "2.0.0-rc.36",
20+
"vuepress-theme-hope": "2.0.0-rc.36"
2121
}
2222
}

0 commit comments

Comments
 (0)