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

Fixes #306

Merged
merged 2 commits into from
Feb 20, 2019
Merged

Fixes #306

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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