Ilpo Nyyssönen

Results 2 comments of Ilpo Nyyssönen

Looks like after replacing all asyncio.async with asyncio.ensure_future it works.

Workaround: ``` LOOKUP_MONITOR = Monitor.new module RakeTaskManagerPatch def [](task_name, scopes=nil) self.lookup(task_name.to_s, scopes) or LOOKUP_MONITOR.synchronize { super(task_name, scopes) } end end class Rake::Application prepend RakeTaskManagerPatch end ```