Skip to content

Commit

Permalink
Fix up actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijrajsharma committed Aug 9, 2024
1 parent 5dba5ea commit 8fa273a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/Unit-Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
branches:
- master
- develop
- fix/tests
pull_request:
branches:
- master
Expand Down
4 changes: 2 additions & 2 deletions API/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ def get_task_status(
if task_result.status == "SUCCESS":
task_response_result = task_result.result
if task_result.state != "SUCCESS":
# task_response_result = "N/A" # TODO : Make sure no imp information is popping out outside of the API
task_response_result = str(task_result.info)
task_response_result = "N/A" # TODO : Make sure no imp information is popping out outside of the API
# task_response_result = str(task_result.info)

result = {
"id": task_id,
Expand Down

0 comments on commit 8fa273a

Please sign in to comment.