summaryrefslogtreecommitdiffstats
path: root/orchestrator
diff options
context:
space:
mode:
authorHåkon Hallingstad <hakon@yahoo-inc.com>2016-06-17 14:49:41 +0200
committerHåkon Hallingstad <hakon@yahoo-inc.com>2016-06-17 14:49:41 +0200
commit0ba7ed4721bc8479275d1c46b5051f22456d19dd (patch)
treed2bf31e283725a1425d986f79cedf71c3891094a /orchestrator
parent97d76a237c613a1954651ac0c0666db9215cafe2 (diff)
Change hakon to hakonhall
Diffstat (limited to 'orchestrator')
-rw-r--r--orchestrator/OWNERS2
-rw-r--r--orchestrator/src/main/java/com/yahoo/vespa/orchestrator/VespaModelUtil.java2
-rw-r--r--orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerJaxRsApi.java2
-rw-r--r--orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerState.java2
-rw-r--r--orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerStateRequest.java2
-rw-r--r--orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerStateResponse.java2
-rw-r--r--orchestrator/src/main/java/com/yahoo/vespa/orchestrator/policy/ServiceClusterSuspendPolicy.java2
-rw-r--r--orchestrator/src/test/java/com/yahoo/vespa/orchestrator/VespaModelUtilTest.java2
8 files changed, 8 insertions, 8 deletions
diff --git a/orchestrator/OWNERS b/orchestrator/OWNERS
index 3d08c49311b..e131dacde49 100644
--- a/orchestrator/OWNERS
+++ b/orchestrator/OWNERS
@@ -1 +1 @@
-hakon
+hakonhall
diff --git a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/VespaModelUtil.java b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/VespaModelUtil.java
index 148c9463f62..e16ccdca5b7 100644
--- a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/VespaModelUtil.java
+++ b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/VespaModelUtil.java
@@ -25,7 +25,7 @@ import static com.yahoo.collections.CollectionUtil.first;
* Utility methods for working with Vespa-specific model entities (see OrchestratorUtil
* for more generic model utilities).
*
- * @author hakon
+ * @author hakonhall
*/
public class VespaModelUtil {
private static final Logger log = Logger.getLogger(VespaModelUtil.class.getName());
diff --git a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerJaxRsApi.java b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerJaxRsApi.java
index e49173d84bf..d6c4bda8871 100644
--- a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerJaxRsApi.java
+++ b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerJaxRsApi.java
@@ -9,7 +9,7 @@ import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
/**
- * @author hakon
+ * @author hakonhall
*/
public interface ClusterControllerJaxRsApi {
@POST
diff --git a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerState.java b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerState.java
index 58f1ef32b10..e5db0ec9795 100644
--- a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerState.java
+++ b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerState.java
@@ -9,7 +9,7 @@ import com.fasterxml.jackson.annotation.JsonValue;
* that class is already fairly complicated, and may perhaps best be screened from JSON annotations - the only
* thing we need is the enum &lt; - &gt; String conversions).
*
- * @author hakon
+ * @author hakonhall
*/
public enum ClusterControllerState {
MAINTENANCE("maintenance"),
diff --git a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerStateRequest.java b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerStateRequest.java
index 870ba79158c..a7680d9659d 100644
--- a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerStateRequest.java
+++ b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerStateRequest.java
@@ -8,7 +8,7 @@ import java.util.Map;
import java.util.Objects;
/**
- * @author hakon
+ * @author hakonhall
*/
public class ClusterControllerStateRequest {
diff --git a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerStateResponse.java b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerStateResponse.java
index 16d64566b8e..6036cad9aaa 100644
--- a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerStateResponse.java
+++ b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/controller/ClusterControllerStateResponse.java
@@ -7,7 +7,7 @@ import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The response returned by the cluster controller's set-node-state APIs.
*
- * @author hakon
+ * @author hakonhall
*/
public class ClusterControllerStateResponse {
@JsonProperty("wasModified")
diff --git a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/policy/ServiceClusterSuspendPolicy.java b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/policy/ServiceClusterSuspendPolicy.java
index b2fdd7878d3..7cb20cb8657 100644
--- a/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/policy/ServiceClusterSuspendPolicy.java
+++ b/orchestrator/src/main/java/com/yahoo/vespa/orchestrator/policy/ServiceClusterSuspendPolicy.java
@@ -5,7 +5,7 @@ import com.yahoo.vespa.orchestrator.VespaModelUtil;
import com.yahoo.vespa.applicationmodel.ServiceCluster;
/**
- * @author hakon
+ * @author hakonhall
* @author bakksjo
*/
public final class ServiceClusterSuspendPolicy {
diff --git a/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/VespaModelUtilTest.java b/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/VespaModelUtilTest.java
index ab533528cd4..d96b85d50bf 100644
--- a/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/VespaModelUtilTest.java
+++ b/orchestrator/src/test/java/com/yahoo/vespa/orchestrator/VespaModelUtilTest.java
@@ -25,7 +25,7 @@ import static junit.framework.TestCase.assertTrue;
import static org.fest.assertions.Assertions.assertThat;
/**
- * @author hakon
+ * @author hakonhall
*/
public class VespaModelUtilTest {
// Cluster Controller Service Cluster