Ticket #87: tryclient.py.diff

File tryclient.py.diff, 0.8 kB (added by rochg, 1 year ago)

Included custom properties when making remote "try" call

  • /Users/rochg/porting/buildbot-0.7.4/buildbot/scripts/tryclient.py

    old new  
    368368 
    369369    def _deliverJob_pb(self, remote): 
    370370        ss = self.sourcestamp 
     371 
    371372        d = remote.callRemote("try", 
    372                               ss.branch, ss.revision, ss.patch, 
    373                               self.builderNames) 
     373                              ss.branch, 
     374                              ss.revision, 
     375                              ss.patch, 
     376                              self.builderNames, 
     377                              self.config['custom_props']) 
    374378        d.addCallback(self._deliverJob_pb2) 
    375379        return d 
    376380    def _deliverJob_pb2(self, status):