Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Victoria Jeffrey <[email protected]>
  • Loading branch information
Victoria Jeffrey committed May 20, 2019
1 parent ab249c1 commit eecf82b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,8 @@ def cleanup
"status": "SKIPPED",
"penultimateStatus": "SKIPPED",
"endTime": {}
}
},
"projectsData": []
},
{
"id": @docker_node_id2,
Expand All @@ -447,7 +448,8 @@ def cleanup
"scanData": {
"id": "some-id",
"endTime": {}
}
},
"projectsData": []
}
],
"total": 2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ func gatherInfoForNode(in message.Compliance) (*manager.NodeMetadata, error) {
status = nodes.LastContactData_PASSED
case "failed":
status = nodes.LastContactData_FAILED
case "skipped":
status = nodes.LastContactData_SKIPPED
}

return &manager.NodeMetadata{
Expand Down

0 comments on commit eecf82b

Please sign in to comment.