aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/vcmr/ChangeRequestClient.java
diff options
context:
space:
mode:
authorOla Aunrønning <olaa@verizonmedia.com>2021-05-14 17:14:29 +0200
committerOla Aunrønning <olaa@verizonmedia.com>2021-05-14 17:17:40 +0200
commit69af24a2bd8adbcd594d9fcd2b7322d38b4494e2 (patch)
tree248e3fe5b48742d17633e6c4a75515f59649cb22 /controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/vcmr/ChangeRequestClient.java
parent3c1a966604bfeb5315c056c993a736797482aaca (diff)
Only approve VCMRs manageable by automation
Diffstat (limited to 'controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/vcmr/ChangeRequestClient.java')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/vcmr/ChangeRequestClient.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/vcmr/ChangeRequestClient.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/vcmr/ChangeRequestClient.java
index f8f54567bea..4fa195f1b05 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/vcmr/ChangeRequestClient.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/vcmr/ChangeRequestClient.java
@@ -11,6 +11,6 @@ public interface ChangeRequestClient {
/** Get upcoming change requests and updated status of previously stored requests */
List<ChangeRequest> getChangeRequests(List<ChangeRequest> changeRequests);
- void approveChangeRequests(List<ChangeRequest> changeRequests);
+ void approveChangeRequest(ChangeRequest changeRequest);
}