Merge lp:~dobey/autopilot/fix-psutil into lp:autopilot/legacy

Proposed by dobey
Status: Rejected
Rejected by: dobey
Proposed branch: lp:~dobey/autopilot/fix-psutil
Merge into: lp:autopilot/legacy
Diff against target: 11 lines (+1/-1)
1 file modified
autopilot/introspection/__init__.py (+1/-1)
To merge this branch: bzr merge lp:~dobey/autopilot/fix-psutil
Reviewer Review Type Date Requested Status
dobey (community) Disapprove
Review via email: mp+318995@code.launchpad.net

Commit message

Update for change to psutil API.

To post a comment you must log in.
Revision history for this message
dobey (dobey) wrote :

Self approving because this is trivial and needed to unblock migration.

review: Approve
Revision history for this message
dobey (dobey) wrote :

Rejecting actually, because this was apparently already fixed in a manual upload.

review: Disapprove

Unmerged revisions

500. By dobey

Update for change to psutil API.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'autopilot/introspection/__init__.py'
2--- autopilot/introspection/__init__.py 2014-04-07 23:25:11 +0000
3+++ autopilot/introspection/__init__.py 2017-03-04 23:06:55 +0000
4@@ -434,7 +434,7 @@
5 def __call__(self, pid):
6 if self._cached_result is None:
7 self._cached_result = [
8- p.pid for p in psutil.Process(pid).get_children(recursive=True)
9+ p.pid for p in psutil.Process(pid).children(recursive=True)
10 ]
11 return self._cached_result
12

Subscribers

People subscribed via source and target branches

to all changes: