summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorValerij Fredriksen <valerijf@verizonmedia.com>2021-06-14 14:10:23 +0200
committerValerij Fredriksen <valerijf@verizonmedia.com>2021-06-14 14:10:23 +0200
commit015a5f22fedf83a5a4693284b4d343958f28599e (patch)
tree6e6bbbf94084fe5111056a34eb356ddedb2918be /controller-api
parent33e23de1c0df684628aeeb4a18971325713dbe57 (diff)
Allow closing HorizionResponse
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/horizon/HorizonResponse.java8
1 files changed, 7 insertions, 1 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/horizon/HorizonResponse.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/horizon/HorizonResponse.java
index ba7540b2708..5447b8c3b0b 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/horizon/HorizonResponse.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/horizon/HorizonResponse.java
@@ -1,12 +1,13 @@
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.integration.horizon;
+import java.io.IOException;
import java.io.InputStream;
/**
* @author valerijf
*/
-public class HorizonResponse {
+public class HorizonResponse implements AutoCloseable {
private final int code;
private final InputStream inputStream;
@@ -27,4 +28,9 @@ public class HorizonResponse {
public static HorizonResponse empty() {
return new HorizonResponse(200, InputStream.nullInputStream());
}
+
+ @Override
+ public void close() throws IOException {
+ inputStream.close();
+ }
}