aboutsummaryrefslogtreecommitdiffstats
path: root/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/node/History.java
diff options
context:
space:
mode:
Diffstat (limited to 'node-repository/src/main/java/com/yahoo/vespa/hosted/provision/node/History.java')
-rw-r--r--node-repository/src/main/java/com/yahoo/vespa/hosted/provision/node/History.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/node/History.java b/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/node/History.java
index 4aca1cbd056..7da10ce085a 100644
--- a/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/node/History.java
+++ b/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/node/History.java
@@ -46,10 +46,8 @@ public class History {
private static ImmutableMap<Event.Type, Event> toImmutableMap(Collection<Event> events) {
ImmutableMap.Builder<Event.Type, Event> builder = new ImmutableMap.Builder<>();
- for (Event event : events) {
- if (event.type() == Event.Type.requested) continue; // TODO (freva): Remove requested event after 8.70
+ for (Event event : events)
builder.put(event.type(), event);
- }
return builder.build();
}
@@ -182,8 +180,6 @@ public class History {
down,
// The active node came up according to the service monitor
up,
- // The node made a config request, indicating it is live
- requested,
// The node resources/flavor were changed
resized(false),
// The node was rebooted