From 2f5fc9675d684da15ae336eff638808edc053fe2 Mon Sep 17 00:00:00 2001 From: Phil Owen <19691521+PhillipsOwen@users.noreply.github.com> Date: Tue, 19 Mar 2024 12:45:45 -0400 Subject: [PATCH] adding test request validation --- src/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server.py b/src/server.py index 00f25b0..0274f0c 100644 --- a/src/server.py +++ b/src/server.py @@ -518,7 +518,7 @@ async def superv_workflow_request(workflow_type: WorkflowTypeName, try: # made sure all the params are valid - if workflow_type and run_status and os_image: # and db_image and test_image and tests + if workflow_type and run_status and os_image and tests: # and db_image and test_image and tests # convert the string to a dict test_request = json.loads(tests)