Skip to content

Commit

Permalink
fix(DeployJob): surface IO exception for OTP jar URL
Browse files Browse the repository at this point in the history
  • Loading branch information
landonreed committed May 19, 2020
1 parent 9c03480 commit 17ca3c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ private String constructUserData(boolean graphAlreadyBuilt) {
return null;
}
} catch (IOException e) {
status.fail(String.format("Error checking for trip planner jar: %s", s3JarUrl));
status.fail(String.format("Error checking for trip planner jar: %s", s3JarUrl), e);
return null;
}
String jarDir = String.format("/opt/%s", getTripPlannerString());
Expand Down

0 comments on commit 17ca3c4

Please sign in to comment.