Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(252)

Unified Diff: projects.py

Issue 145293006: Sort issues by their age in the commit queue. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/commit-queue
Patch Set: Addressing the comments Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: projects.py
diff --git a/projects.py b/projects.py
index df33c3fb9536828116e079b251d51119d4ce09ae..d7dbada11aef3c29a073f7e6540c85c02ab95aef 100644
--- a/projects.py
+++ b/projects.py
@@ -163,7 +163,8 @@ def _gen_blink(user, root_dir, rietveld_obj, no_try):
local_checkout,
async_push.AsyncPush(
'https://chromium-status.appspot.com/cq',
- _chromium_status_pwd(root_dir)))
+ _chromium_status_pwd(root_dir)),
+ user)
project_bases = [
'^%s/trunk(|/.*)$' % re.escape(base) for base in BLINK_SVN_BASES]
@@ -245,7 +246,8 @@ def _gen_chromium(user, root_dir, rietveld_obj, no_try):
local_checkout,
async_push.AsyncPush(
'https://chromium-status.appspot.com/cq',
- _chromium_status_pwd(root_dir)))
+ _chromium_status_pwd(root_dir)),
+ user)
project_bases = [
'^%s/trunk/src(|/.*)$' % re.escape(base) for base in CHROME_SVN_BASES]
@@ -517,6 +519,7 @@ def _gen_skia(user, root_dir, rietveld_obj, no_try):
async_push.AsyncPush(
'https://skia-tree-status.appspot.com/cq',
_skia_status_pwd(root_dir)),
+ user,
server_hooks_missing=True)
project_bases = [
@@ -583,7 +586,8 @@ def _gen_nacl(user, root_dir, rietveld_obj, no_try):
local_checkout,
async_push.AsyncPush(
'https://nativeclient-status.appspot.com/cq',
- _chromium_status_pwd(root_dir)))
+ _chromium_status_pwd(root_dir)),
+ user)
host_aliases = SVN_HOST_ALIASES + [
'http://src.chromium.org', 'https://src.chromium.org']
@@ -653,7 +657,8 @@ def _gen_gyp(user, root_dir, rietveld_obj, no_try):
local_checkout,
async_push.AsyncPush(
'https://chromium-status.appspot.com/cq/receiver',
- _chromium_status_pwd(root_dir)))
+ _chromium_status_pwd(root_dir)),
+ user)
project_bases = [
'^%s(|/.*)$' % re.escape(base + naked_url) for base in ('http', 'https')
@@ -745,7 +750,8 @@ def _internal_simple(path, project_bases, user, root_dir, rietveld_obj):
local_checkout,
async_push.AsyncPush(
'https://chromium-status.appspot.com/cq',
- _chromium_status_pwd(root_dir)))
+ _chromium_status_pwd(root_dir)),
+ user)
verifiers_no_patch = [
project_base.ProjectBaseUrlVerifier(project_bases),
« pending_manager.py ('K') | « pending_manager.py ('k') | tests/commit_queue_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698