Skip to content

Commit

Permalink
Auto merge of #5819 - mbrubeck:notify-more, r=jdm
Browse files Browse the repository at this point in the history
The 300 second threshold was originally from the Gecko/Firefox build system. It doesn't fit Servo builds, which are shorter, and often hover right around the 300 second mark (making the notification unpredictable).
  • Loading branch information
bors-servo committed Apr 24, 2015
2 parents ef1e50a + 79894f7 commit 07aa630
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/servo/build_commands.py
Expand Up @@ -19,7 +19,7 @@ def is_headless_build():

# Function to generate desktop notification once build is completed & limit exceeded!
def notify(elapsed):
if elapsed < 300:
if elapsed < 30:
return

if sys.platform.startswith('linux'):
Expand Down

0 comments on commit 07aa630

Please sign in to comment.