summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2017-10-03 16:03:56 +0200
committerMartin Polden <mpolden@mpolden.no>2017-10-03 16:06:01 +0200
commitf888cdc66f190a4decbcaac4e9288855585c3e6e (patch)
tree8bda332ad0199afb4c0e908126b6c1940f6596ab /controller-api
parent6e134d121f14dd940f84b25b5bc27ad22d80af2f (diff)
Add trigger API
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/BuildService.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/BuildService.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/BuildService.java
index bbd15707cde..7933a23c45f 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/BuildService.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/BuildService.java
@@ -8,7 +8,8 @@ public interface BuildService {
/**
* Enqueue a job defined by "buildJob in an external build system, and return the outcome of the enqueue request.
- * This method should return @false only when a retry is in order, and @true otherwise, e.g., on succes, or for invalid jobs.
+ * This method should return @false only when a retry is in order, and @true otherwise, e.g., on success, or for
+ * invalid jobs.
*/
boolean trigger(BuildJob buildJob);