Skip to content

Commit

Permalink
libimobiledevice is unable to extract the provisioning profile from ipas
Browse files Browse the repository at this point in the history
which are not corrupt. So turning an exception to a log.
  • Loading branch information
abhijit1234 committed Mar 23, 2015
1 parent 0ca54ef commit 5409432
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -156,9 +156,9 @@ public IOSCapabilities getCapabilities(){
try {
ProvisioningProfileInfo info = ProvisioningService.getProfile(getEmbeddedProfile());
res.setCapability(IOSCapabilities.PROVISIONNED,info.getDevices());
return res;
} catch (Exception e) {
throw new WebDriverException("Cannot extract probile. corrupted ipa ?");
log.warning("Cannot extract profile. corrupted ipa ?");
}
return res;
}
}

0 comments on commit 5409432

Please sign in to comment.