From d9c480cd57a83cbcd768a70b2216e7702f18e59b Mon Sep 17 00:00:00 2001 From: GotthardG <51994228+GotthardG@users.noreply.github.com> Date: Thu, 10 Apr 2025 22:03:43 +0200 Subject: [PATCH] Add job processing system with streaming endpoint Introduced a `processing` router to handle job streaming using server-sent events. Added `Jobs` and `JobStatus` models for managing job-related data, along with database creation logic. Updated the `sample` router to create new job entries during experiment creation. --- backend/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/main.py b/backend/main.py index 58ab686..7c5b43b 100644 --- a/backend/main.py +++ b/backend/main.py @@ -235,7 +235,7 @@ if __name__ == "__main__": if is_ci or environment == "test": # Test or CI Mode: Run server process temporarily for test validation ssl_dir = Path(cert_path).parent - ssl_dir.mkdir(parents=True, exist_ok=True) + # ssl_dir.mkdir(parents=True, exist_ok=True) # Generate self-signed certs if missing if not Path(cert_path).exists() or not Path(key_path).exists():