Skip to content
This repository has been archived by the owner on Nov 25, 2021. It is now read-only.

Commit

Permalink
Merge pull request #306 from suomiy/fixes
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
suomiy authored Feb 20, 2019
2 parents 6088c86 + 747e047 commit a9aad83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ public enum VersionSupport {

FOLLOW_LINKS(new Version(4, 2, 0), Version.MAX_VALUE),

// NPE on the engine: affects hosts
// FIXME: change supportedUntil after this bug is resolved https://bugzilla.redhat.com/show_bug.cgi?id=1547050
FOLLOW_BUG(new Version(4, 2, 0), Version.MAX_VALUE);
FOLLOW_BUG(new Version(4, 2, 0), new Version(4, 2, 2));

private Version supportedFrom;
private Version supportedUntil;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public static class Values {
public List<Value> value;
}

@JsonIgnoreProperties(ignoreUnknown = true)
public static class Value {
public String datum;
}
Expand Down

0 comments on commit a9aad83

Please sign in to comment.