1
0
mirror of https://github.com/google/nomulus synced 2026-01-04 04:04:22 +00:00

Use the correct certificate provider type (#427)

TESTED: tested in alpha. Previous I only  tested locally and missed this
typo.
This commit is contained in:
Lai Jiang
2020-01-06 16:19:50 -05:00
committed by GitHub
parent 5d9bf64b96
commit 8fb12d21a2

View File

@@ -333,7 +333,7 @@ public class ProxyModule {
if (env == Environment.LOCAL) {
return Mode.SELF_SIGNED;
} else {
return Mode.P12_FILE;
return Mode.PEM_FILE;
}
}