Skip to content

Commit

Permalink
Convert build start time from millis to seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennestuder committed Dec 6, 2016
1 parent 0e77b28 commit 9be8a3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ private static Optional<Long> buildStartTime(@Nullable BuildScanPayload buildSca
Long buildStartTime = null;
if (buildScanPayload != null) {
try {
buildStartTime = buildScanPayload.data.summary.startTime;
buildStartTime = buildScanPayload.data.summary.startTime / 1000;
} catch (Exception e) {
// ignore
}
Expand Down

0 comments on commit 9be8a3e

Please sign in to comment.