Skip to content

Commit

Permalink
(GitPoller) pass "repository" argument to changes.Change
Browse files Browse the repository at this point in the history
Enable users to target specific repository using ChangeFilter(repository=?).

self.repourl is used as repository string to match behaviour of SVNPoller.
  • Loading branch information
shawnchin committed Sep 15, 2010
1 parent ee5a226 commit c3f92bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion master/buildbot/changes/gitpoller.py
Expand Up @@ -219,7 +219,8 @@ def _process_changes(self, res):
when = commit_timestamp,
branch = self.branch,
category = self.category,
project = self.project)
project = self.project,
repository = self.repourl)
self.parent.addChange(c)
self.lastChange = self.lastPoll

Expand Down

0 comments on commit c3f92bd

Please sign in to comment.