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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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