mirror of
https://github.com/google/nomulus
synced 2026-08-20 22:26:12 +00:00
Fix gax and gax-grpc dependency mismatch (#2347)
Also address a deprecation warning. TESTED=build the nomulus tool locally and it run the `list_cursors` command correctly. It used to fail.
This commit is contained in:
+1
-1
@@ -77,7 +77,7 @@ public final class SslInitializerTestUtils {
|
||||
throws Exception {
|
||||
X500Name subjectDnName = new X500Name("CN=" + hostname);
|
||||
BigInteger serialNumber = BigInteger.valueOf(System.currentTimeMillis());
|
||||
X500Name issuerDnName = new X500Name(ssc.cert().getIssuerDN().getName());
|
||||
X500Name issuerDnName = new X500Name(ssc.cert().getIssuerX500Principal().getName());
|
||||
ContentSigner sigGen = new JcaContentSignerBuilder("SHA256WithRSAEncryption").build(ssc.key());
|
||||
X509v3CertificateBuilder v3CertGen =
|
||||
new JcaX509v3CertificateBuilder(
|
||||
|
||||
Reference in New Issue
Block a user