Skip to content

Commit

Permalink
Merge pull request #40 from craigatk/save-failure
Browse files Browse the repository at this point in the history
(feature) Saving failure results in database for later investigation
  • Loading branch information
craigatk committed Apr 3, 2020
2 parents 149a7a7 + 660fc9b commit d0fd7f1
Show file tree
Hide file tree
Showing 20 changed files with 583 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
public class GroupedResultsParser {
private final ObjectMapper mapper = new ObjectMapper();

public GroupedResults parseGroupedResults(String groupedResultsXml) throws IOException {
return mapper.readValue(groupedResultsXml, GroupedResults.class);
public GroupedResults parseGroupedResults(String groupedResultsBlob) throws IOException {
return mapper.readValue(groupedResultsBlob, GroupedResults.class);
}

public String serializeGroupedResults(GroupedResults groupedResults) throws JsonProcessingException {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d0fd7f1

Please sign in to comment.