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

This commit is contained in:
retoor 2025-01-27 16:37:07 +01:00
parent 99d5546ba7
commit eff6b3beeb

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):