Skip to content
Snippets Groups Projects
Commit 0b594e50 authored by Lars Kruse's avatar Lars Kruse
Browse files

refactor: use short-lived sessions when accessing the database

Previously the database connection ("DB.session") was established during
the startup of Aura Engine.
This was causing conflicts in the threaded execution environment (#75).
Now all sessions are acquired in a short-lived context:

  with DB.Session() as session:
      ...

If database query performance is a real concern, then the session
contexts could be moved to a higher level.

Closes: #75
parent d041f86c
No related branches found
No related tags found
1 merge request!1refactor: use short-lived sessions when accessing the database
Pipeline #1111 passed