Skip to content

Commit

Permalink
Update pr_checker.js
Browse files Browse the repository at this point in the history
Clarify that the wait time is a *minimum* not a maximum. Also see  nodejs#131
  • Loading branch information
srl295 committed Oct 5, 2018
1 parent 38fbb3e commit 599fdae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pr_checker.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ class PRChecker {
const dateStr = new Date(pr.createdAt).toDateString();
const type = wait.isWeekend ? 'weekend' : 'weekday';
cli.info(`This PR was created on ${dateStr} (${type} in UTC)`);
cli.warn(`${wait.timeLeft} hours left to land`);
cli.warn(`Wait at least ${wait.timeLeft} hours before landing`);
return false;
}

Expand Down

0 comments on commit 599fdae

Please sign in to comment.