OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 from common import chromium_utils | 5 from common import chromium_utils |
6 | 6 |
7 from master import build_utils | 7 from master import build_utils |
8 | 8 |
9 from buildbot.changes import svnpoller | 9 from buildbot.changes import svnpoller |
10 | 10 |
(...skipping 12 matching lines...) Expand all Loading... | |
23 return build_utils.SplitPath(projects, path) | 23 return build_utils.SplitPath(projects, path) |
24 | 24 |
25 def Update(config, active_master, c): | 25 def Update(config, active_master, c): |
26 # Polls config.Master.trunk_url for changes | 26 # Polls config.Master.trunk_url for changes |
27 viewvc_url = "http://src.chromium.org/viewvc/chrome?view=rev&revision=%s" | 27 viewvc_url = "http://src.chromium.org/viewvc/chrome?view=rev&revision=%s" |
28 poller = svnpoller.SVNPoller(svnurl=config.Master.trunk_url, | 28 poller = svnpoller.SVNPoller(svnurl=config.Master.trunk_url, |
29 svnbin=chromium_utils.SVN_BIN, | 29 svnbin=chromium_utils.SVN_BIN, |
30 split_file=ChromeTreeFileSplitter, | 30 split_file=ChromeTreeFileSplitter, |
31 pollinterval=10, | 31 pollinterval=10, |
32 revlinktmpl=viewvc_url) | 32 revlinktmpl=viewvc_url) |
33 c['change_source'].append(poller) | 33 # c['change_source'].append(poller) |
Vadim Sh.
2013/11/21 22:33:02
Just double-checking: is this intentional?
pgervais
2013/11/21 22:46:33
Good catch. No, this is not intentional. It slippe
| |
OLD | NEW |