File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " taskiq"
3- version = " 0.3.1 "
3+ version = " 0.3.2 "
44description = " Distributed task queue with full async support"
55authors = [" Pavel Kirilin <win10@list.ru>" ]
66maintainers = [" Pavel Kirilin <win10@list.ru>" ]
Original file line number Diff line number Diff line change @@ -62,8 +62,9 @@ def import_from_modules(modules: List[str]) -> None:
6262 logger .info (f"Importing tasks from module { module } " )
6363 with add_cwd_in_path ():
6464 import_module (module )
65- except ImportError :
66- logger .warning (f"Cannot import { module } " )
65+ except ImportError as err :
66+ logger .warning (f"Cannot import { module } . Cause:" )
67+ logger .exception (err )
6768
6869
6970def import_tasks (modules : List [str ], pattern : str , fs_discover : bool ) -> None :
You can’t perform that action at this time.
0 commit comments