Skip to content

Commit 0ae420f

Browse files
Mei Chenmp911de
authored andcommitted
Fix otherSans in VaultCertificateRequest.
Closes gh-887
1 parent 6dedcf1 commit 0ae420f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-vault-core/src/main/java/org/springframework/vault/support/VaultCertificateRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ public VaultCertificateRequestBuilder otherSans(Iterable<String> otherSans) {
350350

351351
Assert.notNull(otherSans, "Other subject alt names must not be null");
352352

353-
this.otherSans = toList(uriSubjectAltNames);
353+
this.otherSans = toList(otherSans);
354354
return this;
355355
}
356356

0 commit comments

Comments
 (0)