summaryrefslogtreecommitdiff
path: root/cbuildbot/stages/sync_stages.py
diff options
context:
space:
mode:
Diffstat (limited to 'cbuildbot/stages/sync_stages.py')
-rw-r--r--cbuildbot/stages/sync_stages.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/cbuildbot/stages/sync_stages.py b/cbuildbot/stages/sync_stages.py
index e682f427a..8eb6ce77f 100644
--- a/cbuildbot/stages/sync_stages.py
+++ b/cbuildbot/stages/sync_stages.py
@@ -1058,7 +1058,7 @@ class CommitQueueSyncStage(MasterSlaveLKGMSyncStage):
else:
ManifestVersionedSyncStage.PerformStage(self)
- self.WriteChangesToMetadata(self.pool.applied)
+ self.WriteChangesToMetadata(self.pool.changes)
class PreCQSyncStage(SyncStage):
@@ -1091,14 +1091,14 @@ class PreCQSyncStage(SyncStage):
self.pool = validation_pool.ValidationPool.AcquirePreCQPool(
self._run.config.overlays, self._build_root,
self._run.buildnumber, self._run.config.name,
- dryrun=self._run.options.debug_forced, candidates=self.patches,
+ dryrun=self._run.options.debug_forced, changes=self.patches,
builder_run=self._run)
self.pool.ApplyPoolIntoRepo()
- if len(self.pool.applied) == 0 and self.patches:
+ if len(self.pool.changes) == 0 and self.patches:
cros_build_lib.Die('No changes have been applied.')
- changes = self.pool.applied or self.patches
+ changes = self.pool.changes or self.patches
self.WriteChangesToMetadata(changes)
class PreCQLauncherStage(SyncStage):