Skip to content

Commit d1b38c8

Browse files
REGRESSION: Commit queue doesn't process rollouts
https://bugs.webkit.org/show_bug.cgi?id=137623 Reviewed by Tim Horton. * QueueStatusServer/app.yaml: * QueueStatusServer/handlers/updateworkitems.py: (UpdateWorkItems._work_items_from_request): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@174611 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 34dc0ee commit d1b38c8

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

Tools/ChangeLog

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2014-10-10 Alexey Proskuryakov <[email protected]>
2+
3+
REGRESSION: Commit queue doesn't process rollouts
4+
https://bugs.webkit.org/show_bug.cgi?id=137623
5+
6+
Reviewed by Tim Horton.
7+
8+
* QueueStatusServer/app.yaml:
9+
* QueueStatusServer/handlers/updateworkitems.py:
10+
(UpdateWorkItems._work_items_from_request):
11+
112
2014-10-10 Simon Fraser <[email protected]>
213

314
Fix syntax error after r174601.

Tools/QueueStatusServer/app.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
application: webkit-queues
2-
version: 174364 # SVN revision of last major change
2+
version: 174611 # SVN revision of last major change
33
runtime: python
44
api_version: 1
55

Tools/QueueStatusServer/handlers/updateworkitems.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def _parse_work_items_string(self, items_string):
4747
return map(int, item_strings)
4848

4949
def _work_items_from_request(self):
50-
high_priority_items_string = self.request.get("high_priority_items")
50+
high_priority_items_string = self.request.get("high_priority_work_items")
5151
items_string = self.request.get("work_items")
5252
high_priority_work_items = self._parse_work_items_string(high_priority_items_string)
5353
work_items = self._parse_work_items_string(items_string)

0 commit comments

Comments
 (0)