You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 11, 2025. It is now read-only.
The root cause of this is this GAE dev_server issue: when running a module locally with dev_appserver.py which doesn't have version: in app.yaml, it will have something like "None.175924092260391774 in os.environ['CURRENT_VERSION_ID']. This results in util._get_task_target() returning something like "None.modulename" which then raises a InvalidModuleError when trying to enqueue the task in _PipelineContext.start.
The root cause of this is this GAE dev_server issue: when running a module locally with
dev_appserver.pywhich doesn't haveversion:inapp.yaml, it will have something like"None.175924092260391774inos.environ['CURRENT_VERSION_ID']. This results inutil._get_task_target()returning something like"None.modulename"which then raises aInvalidModuleErrorwhen trying to enqueue the task in_PipelineContext.start.One possible solution would be:
util._get_task_target()over to modules (since it's using undocumented APIs). Something like: