aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandreer <andreer@verizonmedia.com>2020-01-27 15:18:17 +0100
committerandreer <andreer@verizonmedia.com>2020-01-27 15:18:17 +0100
commit0a8a46202e974a853dd6690c9359a3d26450dd89 (patch)
tree3a5a27412dc0ebb0ddde495d2b4d2e94b9f4a375
parenta6769f64b639152760d84ed4e6f3300f1f83d90b (diff)
stricter SAN verification 2
-rw-r--r--controller-server/src/main/java/com/yahoo/vespa/hosted/controller/endpointcertificates/EndpointCertificateManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/endpointcertificates/EndpointCertificateManager.java b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/endpointcertificates/EndpointCertificateManager.java
index c421c106a59..4c7305f08e5 100644
--- a/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/endpointcertificates/EndpointCertificateManager.java
+++ b/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/endpointcertificates/EndpointCertificateManager.java
@@ -104,7 +104,7 @@ public class EndpointCertificateManager {
.map(SubjectAlternativeName::getValue).collect(Collectors.toSet());
if (!subjectAlternativeNames.equals(Set.copyOf(dnsNamesOf(instance.id(), List.of(zone)))))
- return logWarning("The set of DNS SANs in the certificate has changed");
+ return logWarning("The list of SANs in the certificate does not match what we expect");
return true; // All good then, hopefully
} catch (Exception e) {