Skip to content

Commit

Permalink
adding test request validation
Browse files Browse the repository at this point in the history
  • Loading branch information
PhillipsOwen committed Mar 19, 2024
1 parent 549e1d7 commit 2f5fc96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 2f5fc96

Please sign in to comment.