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

Issue 50283002: my_activity: Port gerrit to the new gerrit_util API. (Closed)

Created:
7 years, 1 month ago by deymo
Modified:
7 years, 1 month ago
CC:
chromium-reviews, Dirk Pranke, cmp-cc_chromium.org, M-A Ruel, iannucci+depot_tools_chromium.org, ilevy-cc_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Visibility:
Public.

Description

my_activity: Port gerrit to the new gerrit_util API. This patch adds a new function QueryAllChanges to gerrit_util.py allowing the caller to iterate the list of changes regardless the maximum limit of changes per request that the server supports (by default 500 according to gerrit's documentation). my_activity.py is ported to use this function instead of urllib2 to manually make the request. This also adds support for authentication since gerrit_util.py already supports it, and the internal gerrit instance is now re-enabled. Finally, two minor bugs are fixed on the hanlding of returned results: The DETAILED_ACCOUNTS option is passed to gerrit to request the email addresses of the referenced users and users without an email address, such as the "Gerrit Code Review" user on the internal gerrit, are now supported. BUG=chromium:311649, chromium:281695 TEST=Manual run "my_activity.py -u USER" for some users. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=233166

Patch Set 1 : #

Total comments: 4

Patch Set 2 : try/catch added #

Patch Set 3 : add /a/%s to url only if netrc is found. #

Total comments: 9

Patch Set 4 : szager comments. #

Total comments: 1

Patch Set 5 : added check for len(more_changes) < 2 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+62 lines, -29 lines) Patch
M gerrit_util.py View 1 2 3 4 3 chunks +47 lines, -3 lines 0 comments Download
M my_activity.py View 1 2 3 4 chunks +15 lines, -26 lines 0 comments Download

Messages

Total messages: 17 (0 generated)
deymo
Sorry for the SPAM... Rietveld gave me an HTTP 500 and I get a checksum ...
7 years, 1 month ago (2013-10-29 04:59:29 UTC) #1
deymo
On 2013/10/29 04:59:29, deymo wrote: > Sorry for the SPAM... Rietveld gave me an HTTP ...
7 years, 1 month ago (2013-10-30 18:26:10 UTC) #2
szager1
Can you please work with hinoka@ to resolve this with: https://codereview.chromium.org/46413002/
7 years, 1 month ago (2013-10-30 21:05:45 UTC) #3
szager1
On 2013/10/30 21:05:45, szager1 wrote: > Can you please work with hinoka@ to resolve this ...
7 years, 1 month ago (2013-10-30 21:06:29 UTC) #4
Ryan Tseng
https://codereview.chromium.org/50283002/diff/50001/my_activity.py File my_activity.py (right): https://codereview.chromium.org/50283002/diff/50001/my_activity.py#newcode409 my_activity.py:409: return gerrit_util.QueryAllChanges(instance['url'], req, Try/Catch gerrit_util.GerritError here, print the error ...
7 years, 1 month ago (2013-10-30 22:20:45 UTC) #5
Ryan Tseng
https://codereview.chromium.org/50283002/diff/50001/gerrit_util.py File gerrit_util.py (right): https://codereview.chromium.org/50283002/diff/50001/gerrit_util.py#newcode87 gerrit_util.py:87: 'url': '/a/%s' % path, Add in the /a/ url ...
7 years, 1 month ago (2013-10-30 22:27:13 UTC) #6
deymo
Try/catch added (new patch). Tested renaming my ~/.netrc and it shows: ERROR: Looking up 'chromium-review.googlesource.com': ...
7 years, 1 month ago (2013-10-30 22:32:31 UTC) #7
deymo
Added the change to support requests to chromium-review.googlesource.com even if ~/.netrc is not found. (didn't ...
7 years, 1 month ago (2013-10-30 23:01:25 UTC) #8
Ryan Tseng
lgtm + szager for approval
7 years, 1 month ago (2013-10-30 23:02:52 UTC) #9
szager1
https://codereview.chromium.org/50283002/diff/180001/gerrit_util.py File gerrit_util.py (right): https://codereview.chromium.org/50283002/diff/180001/gerrit_util.py#newcode72 gerrit_util.py:72: url = '/a/%s' % path It's always possible that ...
7 years, 1 month ago (2013-10-31 18:15:44 UTC) #10
deymo
Went through the comments and partially included them, PTAL. https://codereview.chromium.org/50283002/diff/180001/gerrit_util.py File gerrit_util.py (right): https://codereview.chromium.org/50283002/diff/180001/gerrit_util.py#newcode72 gerrit_util.py:72: ...
7 years, 1 month ago (2013-10-31 20:42:12 UTC) #11
deymo
On 2013/10/31 20:42:12, deymo wrote: > Went through the comments and partially included them, PTAL. ...
7 years, 1 month ago (2013-11-05 00:30:16 UTC) #12
Jorge Lucangeli Obes
On 2013/11/05 00:30:16, deymo wrote: > On 2013/10/31 20:42:12, deymo wrote: > > Went through ...
7 years, 1 month ago (2013-11-06 00:21:36 UTC) #13
szager1
lgtm with nit. https://codereview.chromium.org/50283002/diff/250001/gerrit_util.py File gerrit_util.py (right): https://codereview.chromium.org/50283002/diff/250001/gerrit_util.py#newcode217 gerrit_util.py:217: more_changes = [cl for cl in ...
7 years, 1 month ago (2013-11-06 00:34:44 UTC) #14
deymo
Added the check for len(more_changes) < 2 raising a GerritError if not. Other functions in ...
7 years, 1 month ago (2013-11-06 01:00:01 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/deymo@chromium.org/50283002/320001
7 years, 1 month ago (2013-11-06 01:00:24 UTC) #16
commit-bot: I haz the power
7 years, 1 month ago (2013-11-06 01:02:01 UTC) #17
Message was sent while issue was closed.
Change committed as 233166

Powered by Google App Engine
This is Rietveld 408576698