Skip to content

Commit

Permalink
If Builder env config changes, make sure we detect it
Browse files Browse the repository at this point in the history
  • Loading branch information
John Carr committed Jul 6, 2010
1 parent 718b680 commit 5833e60
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions master/buildbot/process/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,8 @@ def compareToSetup(self, setup):
diffs.append('factory changed')
if setup.get('locks', []) != self.locks:
diffs.append('locks changed from %s to %s' % (self.locks, setup.get('locks')))
if setup.get('env', {}) != self.env:
diffs.append('env changed from %s to %s' % (self.env, setup.get('env', {})))
if setup.get('nextSlave') != self.nextSlave:
diffs.append('nextSlave changed from %s to %s' % (self.nextSlave, setup.get('nextSlave')))
if setup.get('nextBuild') != self.nextBuild:
Expand Down

0 comments on commit 5833e60

Please sign in to comment.