summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Roberts <bill.c.roberts@gmail.com>2013-07-18 18:57:24 -0700
committerWilliam Roberts <bill.c.roberts@gmail.com>2013-07-18 19:11:44 -0700
commitd496200ad4fef365af317a212bf1cf759ae00ae3 (patch)
tree4d70b9ed182a7e5a965da000e6d0a0217f6ae605
parent6cd5f4346c10e6a31b98facde8c26fddf5a81d39 (diff)
downloadbuild-d496200ad4fef365af317a212bf1cf759ae00ae3.zip
build-d496200ad4fef365af317a212bf1cf759ae00ae3.tar.gz
build-d496200ad4fef365af317a212bf1cf759ae00ae3.tar.bz2
roomservice: Bump devices per page to 200
Limit was reached again when attempting to lunch various projects, such as steelhead. Change-Id: I2f3b9705e07e1e47b86857aeb383cf7c99fcdbdc Signed-off-by: William Roberts <bill.c.roberts@gmail.com>
-rwxr-xr-xtools/roomservice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/roomservice.py b/tools/roomservice.py
index 16e6d1b..f8aa58b 100755
--- a/tools/roomservice.py
+++ b/tools/roomservice.py
@@ -71,7 +71,7 @@ def add_auth(githubreq):
page = 1
while not depsonly:
- githubreq = urllib.request.Request("https://api.github.com/users/CyanogenMod/repos?per_page=100&page=%d" % page)
+ githubreq = urllib.request.Request("https://api.github.com/users/CyanogenMod/repos?per_page=200&page=%d" % page)
add_auth(githubreq)
result = json.loads(urllib.request.urlopen(githubreq).read().decode())
if len(result) == 0: