Enable async.
Build Base Application / Build (push) Failing after 2m2s

This commit is contained in:
2025-01-27 16:37:13 +01:00
parent 99d5546ba7
commit eff6b3beeb
+1 -1
View File
@@ -68,7 +68,7 @@ class BaseApplication(RPCApplication):
self.agents = {}
super().__init__(middlewares=middlewares, *args, **kwargs)
self.jinja2_env = aiohttp_jinja2.setup(
self, loader=jinja2.FileSystemLoader(self.template_path)
self, loader=jinja2.FileSystemLoader(self.template_path),async_enabled=True
)
def run(self, *args, **kwargs):