Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
Use the production cert/passphrase, on production staging
Browse files Browse the repository at this point in the history
  • Loading branch information
matzew committed Jul 10, 2013
1 parent 8c8a4d3 commit ca70419
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -66,8 +66,8 @@ public ApnsService getProductionService(iOSVariant iOSVariant) {
apnsService = APNS
.newService()
.withCert(
new ByteArrayInputStream(iOSVariant.getDevelopmentCertificate()),
iOSVariant.getDevelopmentPassphrase()).withProductionDestination()
new ByteArrayInputStream(iOSVariant.getProductionCertificate()),
iOSVariant.getProductionPassphrase()).withProductionDestination()
.asQueued().build();

// store it:
Expand Down

0 comments on commit ca70419

Please sign in to comment.