summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2022-07-06 14:34:04 +0200
committerjonmv <venstad@gmail.com>2022-07-06 14:34:04 +0200
commit31dd48bc7b2a4350c9d81d4c4499962a9b16c752 (patch)
tree9d6b17f043ba1a38d15fbb8151b0cba2c798a1fb /controller-api
parent8dae227258dde84db5116922fbc616dc1d70d3a7 (diff)
Render test output with less overhead, and limit pending network data
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/TestReport.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/TestReport.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/TestReport.java
index 789a909b780..60cb4248035 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/TestReport.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/TestReport.java
@@ -1,10 +1,6 @@
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.integration.deployment;
-import com.yahoo.slime.SlimeUtils;
-
-import java.nio.charset.StandardCharsets;
-
/**
* @author mortent
*/
@@ -21,7 +17,6 @@ public class TestReport {
}
public static TestReport fromJson(String report) {
- SlimeUtils.jsonToSlimeOrThrow(report.getBytes(StandardCharsets.UTF_8)); // Verify structure.
return new TestReport(report);
}