Skip to content

Commit e500bcb

Browse files
committed
Merge tag '0.1.1' into develop
1.1.0
2 parents ab07b12 + ab0053f commit e500bcb

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "taskiq"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Distributed task queue with full async support"
55
authors = ["Pavel Kirilin <[email protected]>"]
66
maintainers = ["Pavel Kirilin <[email protected]>"]

taskiq/cli/scheduler/args.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ class SchedulerArgs:
1313
modules: List[str]
1414
log_level: str = LogLevel.INFO.name
1515
fs_discover: bool = False
16-
pattern: str = "tasks.py"
1716
tasks_pattern: str = "tasks.py"
1817

1918
@classmethod

taskiq/cli/scheduler/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ async def run_scheduler(args: SchedulerArgs) -> None: # noqa: C901, WPS210, WPS
6262
"Imported scheduler is not a subclass of TaskiqScheduler.",
6363
)
6464
exit(1) # noqa: WPS421
65-
import_tasks(args.modules, args.pattern, args.fs_discover)
65+
import_tasks(args.modules, args.tasks_pattern, args.fs_discover)
6666
basicConfig(
6767
level=getLevelName(args.log_level),
6868
format=(

0 commit comments

Comments
 (0)