Merge lp:~rlane/nova/lp732924 into lp:~hudson-openstack/nova/trunk

Proposed by Ryan Lane
Status: Merged
Approved by: Jay Pipes
Approved revision: 402
Merged at revision: 789
Proposed branch: lp:~rlane/nova/lp732924
Merge into: lp:~hudson-openstack/nova/trunk
Diff against target: 12 lines (+1/-1)
1 file modified
nova/api/ec2/cloud.py (+1/-1)
To merge this branch: bzr merge lp:~rlane/nova/lp732924
Reviewer Review Type Date Requested Status
Jay Pipes (community) Approve
Vish Ishaya (community) Approve
Review via email: mp+53049@code.launchpad.net

Description of the change

Changes the output of status in describe_volumes from showing the user as the owner of the volume to showing the project as the owner.

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

lgtm

review: Approve
Revision history for this message
Jay Pipes (jaypipes) wrote :

also lgtm.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'nova/api/ec2/cloud.py'
--- nova/api/ec2/cloud.py 2011-03-10 04:42:11 +0000
+++ nova/api/ec2/cloud.py 2011-03-11 17:30:49 +0000
@@ -562,7 +562,7 @@
562 if context.is_admin:562 if context.is_admin:
563 v['status'] = '%s (%s, %s, %s, %s)' % (563 v['status'] = '%s (%s, %s, %s, %s)' % (
564 volume['status'],564 volume['status'],
565 volume['user_id'],565 volume['project_id'],
566 volume['host'],566 volume['host'],
567 instance_data,567 instance_data,
568 volume['mountpoint'])568 volume['mountpoint'])