summaryrefslogtreecommitdiffstats
path: root/tenant-cd
diff options
context:
space:
mode:
authorJon Marius Venstad <jvenstad@yahoo-inc.com>2019-06-07 16:16:01 +0200
committerJon Marius Venstad <jvenstad@yahoo-inc.com>2019-06-07 16:16:01 +0200
commit65937b2191aad18db17403cdbf0b94db7aac7cc7 (patch)
tree172777c48fcd2ae52ea1b9d70b13135e5a92c269 /tenant-cd
parent7f0d865ff06f94f4f30a92608bffbedb9dbdcb39 (diff)
Restructure tenant-base/pom.xml to reuse surefire configuration
Diffstat (limited to 'tenant-cd')
-rw-r--r--tenant-cd/pom.xml2
-rw-r--r--tenant-cd/src/main/java/ai/vespa/hosted/cd/TestConfig.java2
-rw-r--r--tenant-cd/src/main/java/ai/vespa/hosted/cd/metric/Metrics.java2
3 files changed, 3 insertions, 3 deletions
diff --git a/tenant-cd/pom.xml b/tenant-cd/pom.xml
index 7270b3a0906..ba93bbe407d 100644
--- a/tenant-cd/pom.xml
+++ b/tenant-cd/pom.xml
@@ -6,7 +6,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ai.vespa.hosted</groupId>
- <artifactId>cd</artifactId>
+ <artifactId>tenant-cd</artifactId>
<name>Hosted Vespa tenant CD</name>
<description>Test library for hosted Vespa applications.</description>
<url>https://github.com/vespa-engine</url>
diff --git a/tenant-cd/src/main/java/ai/vespa/hosted/cd/TestConfig.java b/tenant-cd/src/main/java/ai/vespa/hosted/cd/TestConfig.java
index 6eee2c6ebb3..ed9aea0e9b0 100644
--- a/tenant-cd/src/main/java/ai/vespa/hosted/cd/TestConfig.java
+++ b/tenant-cd/src/main/java/ai/vespa/hosted/cd/TestConfig.java
@@ -93,7 +93,7 @@ public class TestConfig {
? ControllerHttpClient.withKeyAndCertificate(endpoint, privateKeyFile, certificateFile.get())
: ControllerHttpClient.withSignatureKey(endpoint, privateKeyFile, id);
-
+ return null;
}
static TestConfig fromJson(byte[] jsonBytes) {
diff --git a/tenant-cd/src/main/java/ai/vespa/hosted/cd/metric/Metrics.java b/tenant-cd/src/main/java/ai/vespa/hosted/cd/metric/Metrics.java
index 3a3800beb20..3aa5a126745 100644
--- a/tenant-cd/src/main/java/ai/vespa/hosted/cd/metric/Metrics.java
+++ b/tenant-cd/src/main/java/ai/vespa/hosted/cd/metric/Metrics.java
@@ -12,7 +12,7 @@ import static java.util.Map.copyOf;
/**
* Metrics from a Vespa application {@link Endpoint}, indexed by their names, and optionally by a set of custom dimensions.
*
- * Metrics are collected from the <a href="https://docs.vespa.ai/documentation/reference/metrics-health-format.html>metrics</a>
+ * Metrics are collected from the <a href="https://docs.vespa.ai/documentation/reference/metrics-health-format.html">metrics</a>
* API of a Vespa endpoint, and contain the current health status of the endpoint, values for all configured metrics in
* that endpoint, and the time interval from which these metrics were sampled.
*