Skip to content
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.

Commit

Permalink
changeset: 2575:08ab818fd5a1
Browse files Browse the repository at this point in the history
parent:      2570:93832dff28f6
user:        Ed Morley <emorley@mozilla.com>
date:        Mon Sep 03 23:52:35 2012 +0100
summary:     Bug 690672 - Disable coalescing for requests from self-serve; r=catlee

--HG--
branch : production-0.8
  • Loading branch information
Armen Zambrano Gasparnian committed Sep 5, 2012
2 parents e62b541 + d32c644 commit 7573733
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions misc.py
Expand Up @@ -347,6 +347,9 @@ def _nextslave(builder, available_slaves):
def mergeRequests(builder, req1, req2):
if builder.name in nomergeBuilders:
return False
if 'Self-serve' in req1.reason or 'Self-serve' in req2.reason:
# A build was explicitly requested on this revision, so don't coalesce it
return False
return req1.canBeMergedWith(req2)

def mergeBuildObjects(d1, d2):
Expand Down

0 comments on commit 7573733

Please sign in to comment.