[Openstack] Implement network creation in compute API

2012-08-15 Thread Alessio Ababilov
Hi!

I have implemented API for network creation a month ago
(https://review.openstack.org/#/c/9847/). The patch is still waiting
for approval.
Could somebody pay attention to it since it's a blocker for our
company, Grid Dynamics?

-- 
Alessio Ababilov
Software Engineer
Grid Dynamics

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [nova] Disk attachment consistency

2012-08-15 Thread John Garbutt
You can see what XenAPI exposes here:
 http://docs.vmd.citrix.com/XenServer/6.0.0/1.0/en_gb/api/?c=VBD

I think the only thing you can influence when plugging in the disk is the 
“userdevice” which is the disk position: 0,1,2…
When you have attached the disk you can find out the “device” name, such as 
/dev/xvda

I don't know about Xen with libvirt. But from the previous discussion it seems 
using the disk position would also work with KVM?

It seems disk position is also suitably OS agnostic, but I may have missed 
something there.

For backwards compatibility, we could make a best effort of translating the 
specified device name to a position. But as mentioned already, it seems fraught 
with danger in the general case.

I like the idea of an extra field to help report to the user what the likely 
device name is, if available. It would allow us to spot when the above 
guessing did not gone the way we had hoped.

Related to this, there is a limitation in Xen (a limitation in the 
blkbk/blkfrnt protocol I am told) that means you can't cancel the operation of 
removing a disk from a VM. So if the disk is in use, it may return with an 
exception saying the disk is in-use, but as soon as the disk can be released, 
it will be removed anyway. Currently, nova isn't very good at expressing to the 
user that this is what is happening:
https://bugs.launchpad.net/nova/+bug/1030108

Cheers,
John
 
 From: openstack-bounces+john.garbutt=citrix@lists.launchpad.net 
 [mailto:openstack-bounces+john.garbutt=citrix@lists.launchpad.net] On 
 Behalf Of Wangpan
 Sent: 15 August 2012 5:11
 To: Vishvananda Ishaya
 Cc: openstack
 Subject: Re: [Openstack] [nova] Disk attachment consistency
  This is definitely another solution, although it seems less usable than the 
  device serial number which can be an arbitrary string. If this works for 
  xen though, that would be a plus.
  Vish
 I don't have a Xen hypervisor in hand, so anybody else can try it on Xen ? 
 thanks
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [nova] Disk attachment consistency

2012-08-15 Thread Daniel P. Berrange
On Wed, Aug 15, 2012 at 03:49:45PM +0100, John Garbutt wrote:
 You can see what XenAPI exposes here:
  http://docs.vmd.citrix.com/XenServer/6.0.0/1.0/en_gb/api/?c=VBD
 
 I think the only thing you can influence when plugging in the disk is the 
 “userdevice”
 which is the disk position: 0,1,2…  When you have attached the disk you can 
 find out
 the “device” name, such as /dev/xvda
 
 I don't know about Xen with libvirt. But from the previous discussion it 
 seems using
 the disk position would also work with KVM?

No, this doesn't really work in general. Virtio disks get assigned SCSI device
numbers on a first-come first served basis. In the configuration you only have
control over the PCI device slot/function. You might assume that your disks
are probed in PCI device order, and thus get SCSI device numbers in that same
order. This is not really safe though. Further more if the guest has any
other kinds of devices, eg perhaps they logged into an iSCSI target, then all
bets are off for what SCSI device you get assigned.

All the host can safely say is

  - Virtio-blk disks get PCI address domain:bus:slot:function
  - Virtio-SCSI disks get SCSI address A.B.C.D
  - Disks have an unique serial string ZZZ

As a guest OS admin you can use this info get reliable disk names
in /dev/disk/by-{path,id}.

If your disk has a filesystem on it, you can also get a unique UUID
and /or filesystem label, which means you can refer to the device
from /dev/disk/by-{uuid,label} too.

Relying on /dev/sdXXX is doomed to failure in the long term, even on
bare metal, and should be avoided wherever possible.

Daniel
-- 
|: http://berrange.com  -o-http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org  -o- http://virt-manager.org :|
|: http://autobuild.org   -o- http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org   -o-   http://live.gnome.org/gtk-vnc :|

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Discussion about where to put database for bare-metal provisioning (review 10726)

2012-08-15 Thread Alex Glikson
Can you elaborate what is the purpose of this database?
If we compare it to KVM support, the 'primary' location of VMs' metadata 
is in libvirt internal store (outside of Nova), and then it is cached in 
Nova DB, for Nova purposes.
A similar approach might make for bare-metal machines too -- keep 
'primary' metadata store outside of Nova, and a cache in Nova DB.

Regards,
Alex




From:   David Kang dk...@isi.edu
To: OpenStack Development Mailing List 
openstack-...@lists.openstack.org, openstack@lists.launchpad.net 
(openstack@lists.launchpad.net) openstack@lists.launchpad.net, 
Date:   15/08/2012 06:32 PM
Subject:[Openstack] Discussion about where to put database for 
bare-metal provisioning (review 10726)
Sent by:openstack-bounces+glikson=il.ibm@lists.launchpad.net





 Hi,

 This is call for discussion about the code review 10726.
https://review.openstack.org/#/c/10726/
Mark asked why we implemented a separata database for bare-metal 
provisioning.
Here we describe our thought. 
We are open to discussion and to the changes that the community 
recommends.
Please give us your thoughts.

 NTT Docomo and USC/ISI have developed bare-metal provisioning.
We created separate database to describe bare-metal nodes, which consists 
of 5 tables now.
Our initial implementation assumes the database is not a part of nova 
database.
In addition to the reasons described in the comments of the code review,
here is another reason we decided a separate database for baremetal 
provisioning.

Bare-metal database is mainly used by bare-metal nova-compute.
Since bare-metal nova-compute manages multiple bare-metal machines, 
it needs to keep/update the information of bare-metal machines.
If the bare-metal database is in the main nova db, accessing nova db 
remotely by
bare-metal nova-compute is inevitable.
Once Vish told us that shared db access from nova-compute is not 
desirable.

It is possible to make the scheduler do the job of bare-metal 
nova-compute.
However, it would need a big changes in how the scheduler and a 
nova-compute
communicates. For example, currently, the scheduler casts an instance to a
nova-compute. But for bare-metal node, the scheduler should cast an 
instance 
to a bare-metal machine through bare-metal nova-compute.
Bare-metal nova-compute should boot the machine, transfer kernel, fs, etc.
So, bare-metal nova-compute should know the id of bare-metal node and 
other information 
for booting (PXE ip address, ...) and more.
That information should be sent to bare-metal nova-compute by the 
scheduler.

If frequent access of bare-metal tables in nova db from bare-metal 
nova-compute
is OK, we are OK to put the bare-metal tables into nova db.

 Please let us know your opinions.

 Thanks,
 David, Mikyung @ USC/ISI

--
Dr. Dong-In David Kang
Computer Scientist
USC/ISI


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [nova] Disk attachment consistency

2012-08-15 Thread John Garbutt
 From: Daniel P. Berrange [mailto:berra...@redhat.com]
 On Wed, Aug 15, 2012 at 03:49:45PM +0100, John Garbutt wrote:
  You can see what XenAPI exposes here:
   http://docs.vmd.citrix.com/XenServer/6.0.0/1.0/en_gb/api/?c=VBD
 
  I think the only thing you can influence when plugging in the disk is the
 “userdevice”
  which is the disk position: 0,1,2…  When you have attached the disk
  you can find out the “device” name, such as /dev/xvda
 
  I don't know about Xen with libvirt. But from the previous discussion
  it seems using the disk position would also work with KVM?
 
 No, this doesn't really work in general. Virtio disks get assigned SCSI device
 numbers on a first-come first served basis. In the configuration you only have
 control over the PCI device slot/function. You might assume that your disks 
 are
 probed in PCI device order, and thus get SCSI device numbers in that same 
 order.
 This is not really safe though. Further more if the guest has any other kinds 
 of
 devices, eg perhaps they logged into an iSCSI target, then all bets are off 
 for
 what SCSI device you get assigned.

 All the host can safely say is
 
   - Virtio-blk disks get PCI address domain:bus:slot:function
   - Virtio-SCSI disks get SCSI address A.B.C.D
   - Disks have an unique serial string ZZZ
 
 As a guest OS admin you can use this info get reliable disk names in
 /dev/disk/by-{path,id}.
Doh, I guess my plan doesn't work then. After checking, apparently the same 
problem is also present with how Xen deals with exposing the position to the 
guest VM.

 Relying on /dev/sdXXX is doomed to failure in the long term, even on bare
 metal, and should be avoided wherever possible.
I agree, long term, this is not the way forward. I was just thinking in terms 
of backwards compatibility.

 If your disk has a filesystem on it, you can also get a unique UUID and /or
 filesystem label, which means you can refer to the device from /dev/disk/by-
 {uuid,label} too.
That sounds the interesting for those attaching volumes that have a file system 
on it. Would it be reasonable to make this the best practice way for users to 
discover where the volume has been attached?

Maybe we should simply leave nova to report where the disk has been attached? 
XenAPI driver can simply attach in the next available slot, and report back 
what it can about the device location. Sounds like the libvirt driver could do 
the same?

We could document the current device (or whatever we call it) as a driver 
specific hint. Although this doesn't seem very satisfying.

Cheers,
John
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


[Openstack] Review required: https://review.openstack.org/#/c/11016/

2012-08-15 Thread Gurjar, Unmesh
Hi All,

Please review: https://review.openstack.org/#/c/11016/ - HTTP POST Notifier for 
OpenStack projects.


Thanks  Regards,
Unmesh Gurjar | Lead Engineer | NTT DATA Global Technology Services Private 
Limited | w. +91.20.6604.1500 x 379 | m. +91.982.324.7631 | 
unmesh.gur...@nttdata.com | Learn more at nttdata.com/americas

__
Disclaimer:This email and any attachments are sent in strictest confidence for 
the sole use of the addressee and may contain legally privileged, confidential, 
and proprietary data.  If you are not the intended recipient, please advise the 
sender by replying promptly to this email and then delete and destroy this 
email and any attachments without any further use, copying or forwarding

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Discussion about where to put database for bare-metal provisioning (review 10726)

2012-08-15 Thread David Kang

 
 The bare-metal database includes five tables:

1. bm_nodes   // This is similar to compute_node table
2. bm_deployments   // The status of deployment of bare-metal nodes
3. bm_pxe_ips   // PXE information for bare-metal nodes
4. bm_interfaces   // network information of bare-metal nodes
5. migrate_version  // for database migration

 The information of bare-metal nodes and their status 
are sent to the scheduler as an aggregate capability set of the bare-metal 
machines.
Our current approach is to have a new BaremetalHostManager 
(nova/nova/scheduler/baremetal_host_manager.py)
that caches the information.
BaremetalHostManager gets the information by accessing bare-metal db directly 
for now. (Proposed patch 4)
It works only when there is one shared bare-metal db exists.
But, it looks like that non-shared bare-metal db is preferred.
We will change BaremetalHostManager to use RPC (instead of db access) to access 
those information from multiple bare-metal nova-compute nodes. 

 Thanks,
 David




--
Dr. Dong-In David Kang
Computer Scientist
USC/ISI

- Original Message -
 Can you elaborate what is the purpose of this database?
 If we compare it to KVM support, the 'primary' location of VMs'
 metadata is in libvirt internal store (outside of Nova), and then it
 is cached in Nova DB, for Nova purposes.
 A similar approach might make for bare-metal machines too -- keep
 'primary' metadata store outside of Nova, and a cache in Nova DB.
 
 Regards,
 Alex
 
 
 
 
 From: David Kang dk...@isi.edu
 To: OpenStack Development Mailing List
 openstack-...@lists.openstack.org, openstack@lists.launchpad.net
 (openstack@lists.launchpad.net) openstack@lists.launchpad.net,
 Date: 15/08/2012 06:32 PM
 Subject: [Openstack] Discussion about where to put database for
 bare-metal provisioning (review 10726)
 Sent by: openstack-bounces+glikson=il.ibm@lists.launchpad.net
 
 
 
 
 
 
 Hi,
 
 This is call for discussion about the code review 10726.
 https://review.openstack.org/#/c/10726/
 Mark asked why we implemented a separata database for bare-metal
 provisioning.
 Here we describe our thought.
 We are open to discussion and to the changes that the community
 recommends.
 Please give us your thoughts.
 
 NTT Docomo and USC/ISI have developed bare-metal provisioning.
 We created separate database to describe bare-metal nodes, which
 consists of 5 tables now.
 Our initial implementation assumes the database is not a part of nova
 database.
 In addition to the reasons described in the comments of the code
 review,
 here is another reason we decided a separate database for baremetal
 provisioning.
 
 Bare-metal database is mainly used by bare-metal nova-compute.
 Since bare-metal nova-compute manages multiple bare-metal machines,
 it needs to keep/update the information of bare-metal machines.
 If the bare-metal database is in the main nova db, accessing nova db
 remotely by
 bare-metal nova-compute is inevitable.
 Once Vish told us that shared db access from nova-compute is not
 desirable.
 
 It is possible to make the scheduler do the job of bare-metal
 nova-compute.
 However, it would need a big changes in how the scheduler and a
 nova-compute
 communicates. For example, currently, the scheduler casts an instance
 to a
 nova-compute. But for bare-metal node, the scheduler should cast an
 instance
 to a bare-metal machine through bare-metal nova-compute.
 Bare-metal nova-compute should boot the machine, transfer kernel, fs,
 etc.
 So, bare-metal nova-compute should know the id of bare-metal node and
 other information
 for booting (PXE ip address, ...) and more.
 That information should be sent to bare-metal nova-compute by the
 scheduler.
 
 If frequent access of bare-metal tables in nova db from bare-metal
 nova-compute
 is OK, we are OK to put the bare-metal tables into nova db.
 
 Please let us know your opinions.
 
 Thanks,
 David, Mikyung @ USC/ISI
 
 --
 Dr. Dong-In David Kang
 Computer Scientist
 USC/ISI
 
 
 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help : https://help.launchpad.net/ListHelp

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Devstack multinode Installation network configuration help and bridging explanation

2012-08-15 Thread Vishvananda Ishaya

On Aug 14, 2012, at 10:52 PM, Kurt Scholtens burnbrigh...@hotmail.com wrote:

 Vish - 
 
 Thank you for responding.  So, when using multiple interfaces, will setting 
 the PUBLIC_INTERFACE to the separate interface w/o VLANing work?  Is that 
 what you are saying below?  Are any additional configuration parameters then 
 required such as flat_network _bridge?

It should work on two separate interfaces with just that change.

 
 Something still puzzling me:
 From my routing table below, it appears both the public interface AND the 
 flat interface are on br100 (which is bound to eth2).  I didn't think a 
 bridge could have more than one subnet attached to it at any one time. I was 
 apparently wrong.
multiple unrelated ips on an interface is fine
 My br100 has an associated address of 11.0.4.12, but eth2 has the IP address 
 of 192.168.12.105br100 then, has the public_interface traffic (floating_range 
 - 192.168.12.x) and the fixed_address traffic traversing eth2, correct? 
 Is my understanding of what is going on correct?

if the interface specified in flat_interface has an ip on it, it moves it to 
the bridge. So you will often have multiple ips on the bridge: 1) the hosts 
original ip 2) an ip in the fixed_range for dnsmasq 3) all floating ips 
(assuming public_interface=br100) In addition, all guest vnics are on the same 
bridge.

public_interface just controls which interface is used for the floating ips. If 
you want them to be usable from outside the host, you have to make sure that is 
an interface (ir a bridge on an interface) that your router knows about.

Vish___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [openstack-dev] [nova] Disk attachment consistency

2012-08-15 Thread Vishvananda Ishaya

On Aug 14, 2012, at 10:00 PM, Chuck Thier cth...@gmail.com wrote:

 snip
 I could get behind this, and was was brought up by others in our group
 as a more feasible short term solution.  I have a couple of concerns
 with this.  It may cause just as much confusion if the api can't
 reliably determine which device a volume is attached to.  I'm also
 curious as to how well this will work with Xen, and hope some of the
 citrix folks will chime in.  From an api standpoint, I think it would
 be fine to make it optional, as any client that is using old api
 contract will still work as intended.

This will continue to work as well as it currently does with Xen. We can 
reliably determine which devices are known about and pass back the next one my 
patch under review below does that
 
 (review at https://review.openstack.org/#/c/10908/)
 
 snip
 First question: should we return this magic path somewhere via the api? It 
 would be pretty easy to have horizon generate it but it might be nice to 
 have it show up. If we do return it, do we mangle the device to always show 
 the consistent one, or do we return it as another parameter? guest_device 
 perhaps?
 
 Second question: what should happen if someone specifies /dev/xvda against a 
 kvm cloud or /dev/vda against a xen cloud?
 I see two options:
 a) automatically convert it to the right value and return it
 
 I thought that it already did this, but I would have to go back and
 double check.  But it seemed like for xen at least, if you specify
 /dev/vda, Nova would change it to /dev/xvda.

That may be true, I believe for libvirt we just accept /dev/xvdc since it is 
just interpreted as a label.
 
 
 snip
 
 Xen Server 6.0 has a limit of 16 virtual devices per guest instance.
 Experimentally it also expects those to be /dev/xvda - /dev/xvdp.  You
 can't for example attach a device to /dev/xvdq, even if there are no
 other devices attached to the instance.  If you attempt to do this,
 the volume will go in to the attaching state, fail to attach, and then
 fall back to the available state (This can be a bit confusing to new
 users who try to do so).  Does anyone know if there are similar
 limitations for KVM?

There are no limitations like this AFAIK, however in KVM it is possible
to exhaust virtio minor device numbers by continually detaching and
attaching a device if the guest kernel  3.2

 
 Also if you attempt to attach a volume to a deivce that already
 exists, it will silently fail and go back to available as well.  In
 this new scheme should it fail like that, or should it attempt to
 attach it to the next available device, or error out?  Perhaps a
 better question here, is for this initial consistency, is the goal to
 try to be consistent just when there is no device sent, or to also be
 consistent when the device is sent as well.

my review above addresses this by raising an error if you try to attach
to an existing device. I think this is preferrable: i.e. only do the
auto-assign if it is specifically requested.

 
 There was another idea, also brought up in our group.  Would it be
 possible to add a call that would return a list of available devices
 to be attached to?  In the case of Xen, it would return a list of
 devices /dev/xvda-p that were not used.  In the case of KVM, it would
 just return the next available device name.  At least in this case,
 user interfaces and command line tools could use this to validate the
 input the user provides (or auto generate the device to be used if the
 user doesn't select a device).

This is definitely a possibility, although it seems like a separate feature.

Vish


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Help with meta-data

2012-08-15 Thread Eugene Kirpichov
Hi Anne,

I accidentally found this email of yours while looking for links to my post.
I'd probably have found it earlier if you cc'd me on
ekirpic...@gmail.com or ekirpic...@mirantis.com [yes, that's two
different spellings...] :)

I support the idea that this should be somehow integrated in the docs,
but I'm not sure where exactly in the docs is a good place for
information of this style. Would it help if I just linked to the posts
from some wiki page or from the docs? Or would it only help if I (or
somebody) actually merged the relevant parts of the posts into
official documentation?

On Thu, Aug 9, 2012 at 8:07 AM, Anne Gentle a...@openstack.org wrote:
 All, sorry for top posting, but this is a fine example of why we
 really need bloggers to help with the documentation. These fragmented
 instructions are difficult to rely on - we need maintainable,
 process-oriented treatment of content.

 Mirantis peeps, you have added in your blog entries to the docs in the
 past, let's find ways to continually do that and maintain going
 forward.

 I'm not so interested in more install guides, but definitely
 interested in more configuration guides. So Kord, while I like the
 idea (and execution!) of the StackGeek 10-minute guide, it's not one
 to bring into the official docs. But we would definitely welcome your
 reviews of incoming updates to the docs!

 Thanks Simon for bringing your difficulties to the list - we
 continually work on improving the docs. What you learn now could help
 hundreds if not thousands of others, so I'd love for you to improve
 the official docs with your findings.
 Thanks,
 Anne

 On Thu, Aug 9, 2012 at 4:42 AM, Simon Walter si...@gikaku.com wrote:

 On 08/09/2012 12:59 PM, Scott Moser wrote:

 On Aug 8, 2012, at 8:20 PM, Simon Walter si...@gikaku.com wrote:


 On 08/09/2012 06:45 AM, Jay Pipes
 I guess I'll have to build a VM from scratch, as I was relying on the ssh
 key to be able to ssh into the VM, which apparently is supplied by the
 meta-data service.

 use cirros.
 load an image, ssh on with 'cirros' user. pass is 'cubswin:)'


 Thank you. That was good advice.

 Somehow I was not able to connect via ssh. I managed to get novnc working
 and logged into the VM. I can't find anything about connecting via serial or
 the like as you can with Xen. I need to read more about KVM I guess.

 Anyway, I think my networking setup is stuffed. I thought the 10 minutes
 install would be the quickest way to get and running. Now I find myself
 pouring over documentation trying to understand how best to setup
 FlatDHCPManager with two network interfaces. I understand many things have
 changed. So I don't want to go reading something out of date. I found these
 blog posts which explained a lot:
 http://www.mirantis.com/blog/openstack-networking-flatmanager-and-flatdhcpmanager/#comments
 http://www.mirantis.com/blog/openstack-networking-single-host-flatdhcpmanager/
 But am I reading the wrong thing? I like the way Stackgeek had it set up:
 http://stackgeek.com/guides/gettingstarted.html

 But I think they are missing details or it's out dated. For example, with
 their setup the vnc console in horizon does not work because nova-vncproxy
 is installed rather than novnc.

 I'm pretty sure I can figure the networking out if I have the right
 documentation in the first place. Is there a clear instructions for this
 anywhere? Or would someone mind walking me through it again. So far I've
 followed the stackgeek setup above, but the networking is obviously stuffed.

 Must I have the flat_interface in promiscuous mode?
 Or does it actually need an IP address?
 Why are my VMs picking up an IP address from the public_interface DHCP
 server and not from the flat_network_bridge?

 Too many questions to ask. So I thought I should just ask: what is missing
 or incorrect from Stackgeeks 10 minute scripts?

 Many thanks for any advice, tips, docs, etc.


 Cheers,

 Simon


 --
 simonsmicrophone.com

 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp

 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~openstack
 More help   : https://help.launchpad.net/ListHelp



-- 
Eugene Kirpichov
http://www.linkedin.com/in/eugenekirpichov

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] Help with meta-data

2012-08-15 Thread Anne Gentle
Hi Eugene -
But I thought everyone was on the openstack list! :) Thanks for following up.

On Wed, Aug 15, 2012 at 4:35 PM, Eugene Kirpichov ekirpic...@gmail.com wrote:
 Hi Anne,

 I accidentally found this email of yours while looking for links to my post.
 I'd probably have found it earlier if you cc'd me on
 ekirpic...@gmail.com or ekirpic...@mirantis.com [yes, that's two
 different spellings...] :)

 I support the idea that this should be somehow integrated in the docs,
 but I'm not sure where exactly in the docs is a good place for
 information of this style. Would it help if I just linked to the posts
 from some wiki page or from the docs?

I do like to put relevant blog posts on the wiki at
http://wiki.openstack.org/BloggersTips, so you can certainly add to
that page. If it's really missing information in the docs, though, it
should be added to the docs. I know that's a tough judgement call but
we all have to encourage that call.

Or would it only help if I (or
 somebody) actually merged the relevant parts of the posts into
 official documentation?

I wouldn't say only help but I prefer that you merge the relevant
parts of the posts. It's tougher for a doc team member to merge only
parts in without violating the license of the content - you as content
owner can certainly choose which parts to move into the official
documentation though.

Thanks for asking for clarifications - these are certainly gray areas
that I'd like to shine light upon.
Anne

 On Thu, Aug 9, 2012 at 8:07 AM, Anne Gentle a...@openstack.org wrote:
 All, sorry for top posting, but this is a fine example of why we
 really need bloggers to help with the documentation. These fragmented
 instructions are difficult to rely on - we need maintainable,
 process-oriented treatment of content.

 Mirantis peeps, you have added in your blog entries to the docs in the
 past, let's find ways to continually do that and maintain going
 forward.

 I'm not so interested in more install guides, but definitely
 interested in more configuration guides. So Kord, while I like the
 idea (and execution!) of the StackGeek 10-minute guide, it's not one
 to bring into the official docs. But we would definitely welcome your
 reviews of incoming updates to the docs!

 Thanks Simon for bringing your difficulties to the list - we
 continually work on improving the docs. What you learn now could help
 hundreds if not thousands of others, so I'd love for you to improve
 the official docs with your findings.
 Thanks,
 Anne

 On Thu, Aug 9, 2012 at 4:42 AM, Simon Walter si...@gikaku.com wrote:

 On 08/09/2012 12:59 PM, Scott Moser wrote:

 On Aug 8, 2012, at 8:20 PM, Simon Walter si...@gikaku.com wrote:


 On 08/09/2012 06:45 AM, Jay Pipes
 I guess I'll have to build a VM from scratch, as I was relying on the ssh
 key to be able to ssh into the VM, which apparently is supplied by the
 meta-data service.

 use cirros.
 load an image, ssh on with 'cirros' user. pass is 'cubswin:)'


 Thank you. That was good advice.

 Somehow I was not able to connect via ssh. I managed to get novnc working
 and logged into the VM. I can't find anything about connecting via serial or
 the like as you can with Xen. I need to read more about KVM I guess.

 Anyway, I think my networking setup is stuffed. I thought the 10 minutes
 install would be the quickest way to get and running. Now I find myself
 pouring over documentation trying to understand how best to setup
 FlatDHCPManager with two network interfaces. I understand many things have
 changed. So I don't want to go reading something out of date. I found these
 blog posts which explained a lot:
 http://www.mirantis.com/blog/openstack-networking-flatmanager-and-flatdhcpmanager/#comments
 http://www.mirantis.com/blog/openstack-networking-single-host-flatdhcpmanager/
 But am I reading the wrong thing? I like the way Stackgeek had it set up:
 http://stackgeek.com/guides/gettingstarted.html

 But I think they are missing details or it's out dated. For example, with
 their setup the vnc console in horizon does not work because nova-vncproxy
 is installed rather than novnc.

 I'm pretty sure I can figure the networking out if I have the right
 documentation in the first place. Is there a clear instructions for this
 anywhere? Or would someone mind walking me through it again. So far I've
 followed the stackgeek setup above, but the networking is obviously stuffed.

 Must I have the flat_interface in promiscuous mode?
 Or does it actually need an IP address?
 Why are my VMs picking up an IP address from the public_interface DHCP
 server and not from the flat_network_bridge?

 Too many questions to ask. So I thought I should just ask: what is missing
 or incorrect from Stackgeeks 10 minute scripts?

 Many thanks for any advice, tips, docs, etc.


 Cheers,

 Simon


 --
 simonsmicrophone.com

 ___
 Mailing list: https://launchpad.net/~openstack
 Post to : openstack@lists.launchpad.net
 

Re: [Openstack] [openstack-dev] Discussion about where to put database for bare-metal provisioning (review 10726)

2012-08-15 Thread Michael J Fork

I am interested in finding a solution that enables bare-metal and
virtualized requests to be serviced through the same scheduler where the
compute_nodes table has a full view of schedulable resources.  This would
seem to simplify the end-to-end flow while opening up some additional use
cases (e.g. dynamic allocation of a node from bare-metal to hypervisor and
back).

One approach would be to have a proxy running a single nova-compute daemon
fronting the bare-metal nodes .  That nova-compute daemon would report up
many HostState objects (1 per bare-metal node) to become entries in the
compute_nodes table and accessible through the scheduler HostManager
object.  The HostState object would set cpu_info, vcpus, member_mb and
local_gb values to be used for scheduling with the hypervisor_host field
holding the bare-metal machine address (e.g. for IPMI based commands) and
hypervisor_type = NONE.  The bare-metal Flavors are created with an
extra_spec of hypervisor_type= NONE and the corresponding
compute_capabilities_filter would reduce the available hosts to those
bare_metal nodes.  The scheduler would need to understand that
hypervisor_type = NONE means you need an exact fit (or best-fit) host vs
weighting them (perhaps through the multi-scheduler).  The scheduler would
cast out the message to the topic.service-hostname (code today uses the
HostState hostname), with the compute driver having to understand if it
must be serviced elsewhere (but does not break any existing implementations
since it is 1 to 1).

Does this solution seem workable? Anything I missed?

Michael

-
Michael Fork
Cloud Architect, Emerging Solutions
IBM Systems  Technology Group

David Kang dk...@isi.edu wrote on 08/15/2012 11:28:34 AM:

 From: David Kang dk...@isi.edu
 To: OpenStack Development Mailing List openstack-
 d...@lists.openstack.org, openstack@lists.launchpad.net
 (openstack@lists.launchpad.net) openstack@lists.launchpad.net,
 Cc: mkk...@isi.edu, Ken Ash 50ba...@gmail.com, VTJ NOTSU Arata
 no...@virtualtech.jp
 Date: 08/15/2012 02:08 PM
 Subject: [openstack-dev] Discussion about where to put database for
 bare-metal provisioning (review 10726)



  Hi,

  This is call for discussion about the code review 10726.
 https://review.openstack.org/#/c/10726/
 Mark asked why we implemented a separata database for bare-metal
provisioning.
 Here we describe our thought.
 We are open to discussion and to the changes that the community
recommends.
 Please give us your thoughts.

  NTT Docomo and USC/ISI have developed bare-metal provisioning.
 We created separate database to describe bare-metal nodes, which
 consists of 5 tables now.
 Our initial implementation assumes the database is not a part of
 nova database.
 In addition to the reasons described in the comments of the code review,
 here is another reason we decided a separate database for baremetal
 provisioning.

 Bare-metal database is mainly used by bare-metal nova-compute.
 Since bare-metal nova-compute manages multiple bare-metal machines,
 it needs to keep/update the information of bare-metal machines.
 If the bare-metal database is in the main nova db, accessing nova db
 remotely by
 bare-metal nova-compute is inevitable.
 Once Vish told us that shared db access from nova-compute is not
desirable.

 It is possible to make the scheduler do the job of bare-metal
nova-compute.
 However, it would need a big changes in how the scheduler and a
nova-compute
 communicates. For example, currently, the scheduler casts an instance to
a
 nova-compute. But for bare-metal node, the scheduler should cast an
instance
 to a bare-metal machine through bare-metal nova-compute.
 Bare-metal nova-compute should boot the machine, transfer kernel, fs,
etc.
 So, bare-metal nova-compute should know the id of bare-metal node
 and other information
 for booting (PXE ip address, ...) and more.
 That information should be sent to bare-metal nova-compute by the
scheduler.

 If frequent access of bare-metal tables in nova db from bare-metal
 nova-compute
 is OK, we are OK to put the bare-metal tables into nova db.

  Please let us know your opinions.

  Thanks,
  David, Mikyung @ USC/ISI

 --
 Dr. Dong-In David Kang
 Computer Scientist
 USC/ISI


 ___
 OpenStack-dev mailing list
 openstack-...@lists.openstack.org
 http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [openstack-dev] Discussion about where to put database for bare-metal provisioning (review 10726)

2012-08-15 Thread Vishvananda Ishaya

On Aug 15, 2012, at 3:17 PM, Michael J Fork mjf...@us.ibm.com wrote:

 I am interested in finding a solution that enables bare-metal and virtualized 
 requests to be serviced through the same scheduler where the compute_nodes 
 table has a full view of schedulable resources.  This would seem to simplify 
 the end-to-end flow while opening up some additional use cases (e.g. dynamic 
 allocation of a node from bare-metal to hypervisor and back).  
 
 One approach would be to have a proxy running a single nova-compute daemon 
 fronting the bare-metal nodes .  That nova-compute daemon would report up 
 many HostState objects (1 per bare-metal node) to become entries in the 
 compute_nodes table and accessible through the scheduler HostManager object.
 
 The HostState object would set cpu_info, vcpus, member_mb and local_gb values 
 to be used for scheduling with the hypervisor_host field holding the 
 bare-metal machine address (e.g. for IPMI based commands) and hypervisor_type 
 = NONE.  The bare-metal Flavors are created with an extra_spec of 
 hypervisor_type= NONE and the corresponding compute_capabilities_filter would 
 reduce the available hosts to those bare_metal nodes.  The scheduler would 
 need to understand that hypervisor_type = NONE means you need an exact fit 
 (or best-fit) host vs weighting them (perhaps through the multi-scheduler).  
 The scheduler would cast out the message to the topic.service-hostname 
 (code today uses the HostState hostname), with the compute driver having to 
 understand if it must be serviced elsewhere (but does not break any existing 
 implementations since it is 1 to 1).
 
 
 Does this solution seem workable? Anything I missed?
 
The bare metal driver already is proxying for the other nodes so it sounds like 
we need a couple of things to make this happen:

a) modify driver.get_host_stats to be able to return a list of host stats 
instead of just one. Report the whole list back to the scheduler. We could 
modify the receiving end to accept a list as well or just make multiple calls 
to 
self.update_service_capabilities(capabilities)

b) make a few minor changes to the scheduler to make sure filtering still 
works. Note the changes here may be very helpful:

https://review.openstack.org/10327

c) we have to make sure that instances launched on those nodes take up the 
entire host state somehow. We could probably do this by making sure that the 
instance_type ram, mb, gb etc. matches what the node has, but we may want a new 
boolean field used if those aren't sufficient.

I This approach seems pretty good. We could potentially get rid of the shared 
bare_metal_node table. I guess the only other concern is how you populate the 
capabilities that the bare metal nodes are reporting. I guess an api extension 
that rpcs to a baremetal node to add the node. Maybe someday this could be 
autogenerated by the bare metal host looking in its arp table for dhcp 
requests! :)

Vish

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [openstack-dev] Discussion about where to put database for bare-metal provisioning (review 10726)

2012-08-15 Thread David Kang

 Hi Vish,

 Is this discussion for long-term goal or for this Folsom release?

 We still believe that bare-metal database is needed
because there is not an automated way how bare-metal nodes report their 
capabilities
to their bare-metal nova-compute node. 

 Thanks,
 David
 
 
 I am interested in finding a solution that enables bare-metal and
 virtualized requests to be serviced through the same scheduler where
 the compute_nodes table has a full view of schedulable resources. This
 would seem to simplify the end-to-end flow while opening up some
 additional use cases (e.g. dynamic allocation of a node from
 bare-metal to hypervisor and back).
 
 One approach would be to have a proxy running a single nova-compute
 daemon fronting the bare-metal nodes . That nova-compute daemon would
 report up many HostState objects (1 per bare-metal node) to become
 entries in the compute_nodes table and accessible through the
 scheduler HostManager object.
 
 
 
 
 The HostState object would set cpu_info, vcpus, member_mb and local_gb
 values to be used for scheduling with the hypervisor_host field
 holding the bare-metal machine address (e.g. for IPMI based commands)
 and hypervisor_type = NONE. The bare-metal Flavors are created with an
 extra_spec of hypervisor_type= NONE and the corresponding
 compute_capabilities_filter would reduce the available hosts to those
 bare_metal nodes. The scheduler would need to understand that
 hypervisor_type = NONE means you need an exact fit (or best-fit) host
 vs weighting them (perhaps through the multi-scheduler). The scheduler
 would cast out the message to the topic.service-hostname (code
 today uses the HostState hostname), with the compute driver having to
 understand if it must be serviced elsewhere (but does not break any
 existing implementations since it is 1 to 1).
 
 
 
 
 
 Does this solution seem workable? Anything I missed?
 
 The bare metal driver already is proxying for the other nodes so it
 sounds like we need a couple of things to make this happen:
 
 
 a) modify driver.get_host_stats to be able to return a list of host
 stats instead of just one. Report the whole list back to the
 scheduler. We could modify the receiving end to accept a list as well
 or just make multiple calls to
 self.update_service_capabilities(capabilities)
 
 
 b) make a few minor changes to the scheduler to make sure filtering
 still works. Note the changes here may be very helpful:
 
 
 https://review.openstack.org/10327
 
 
 c) we have to make sure that instances launched on those nodes take up
 the entire host state somehow. We could probably do this by making
 sure that the instance_type ram, mb, gb etc. matches what the node
 has, but we may want a new boolean field used if those aren't
 sufficient.
 
 
 I This approach seems pretty good. We could potentially get rid of the
 shared bare_metal_node table. I guess the only other concern is how
 you populate the capabilities that the bare metal nodes are reporting.
 I guess an api extension that rpcs to a baremetal node to add the
 node. Maybe someday this could be autogenerated by the bare metal host
 looking in its arp table for dhcp requests! :)
 
 
 Vish
 
 ___
 OpenStack-dev mailing list
 openstack-...@lists.openstack.org
 http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [openstack-dev] Discussion about where to put database for bare-metal provisioning (review 10726)

2012-08-15 Thread Vishvananda Ishaya
This was an immediate goal, the bare-metal nova-compute node could keep an 
internal database, but report capabilities through nova in the common way with 
the changes below. Then the scheduler wouldn't need access to the bare metal 
database at all.

On Aug 15, 2012, at 4:23 PM, David Kang dk...@isi.edu wrote:

 
 Hi Vish,
 
 Is this discussion for long-term goal or for this Folsom release?
 
 We still believe that bare-metal database is needed
 because there is not an automated way how bare-metal nodes report their 
 capabilities
 to their bare-metal nova-compute node. 
 
 Thanks,
 David
 
 
 I am interested in finding a solution that enables bare-metal and
 virtualized requests to be serviced through the same scheduler where
 the compute_nodes table has a full view of schedulable resources. This
 would seem to simplify the end-to-end flow while opening up some
 additional use cases (e.g. dynamic allocation of a node from
 bare-metal to hypervisor and back).
 
 One approach would be to have a proxy running a single nova-compute
 daemon fronting the bare-metal nodes . That nova-compute daemon would
 report up many HostState objects (1 per bare-metal node) to become
 entries in the compute_nodes table and accessible through the
 scheduler HostManager object.
 
 
 
 
 The HostState object would set cpu_info, vcpus, member_mb and local_gb
 values to be used for scheduling with the hypervisor_host field
 holding the bare-metal machine address (e.g. for IPMI based commands)
 and hypervisor_type = NONE. The bare-metal Flavors are created with an
 extra_spec of hypervisor_type= NONE and the corresponding
 compute_capabilities_filter would reduce the available hosts to those
 bare_metal nodes. The scheduler would need to understand that
 hypervisor_type = NONE means you need an exact fit (or best-fit) host
 vs weighting them (perhaps through the multi-scheduler). The scheduler
 would cast out the message to the topic.service-hostname (code
 today uses the HostState hostname), with the compute driver having to
 understand if it must be serviced elsewhere (but does not break any
 existing implementations since it is 1 to 1).
 
 
 
 
 
 Does this solution seem workable? Anything I missed?
 
 The bare metal driver already is proxying for the other nodes so it
 sounds like we need a couple of things to make this happen:
 
 
 a) modify driver.get_host_stats to be able to return a list of host
 stats instead of just one. Report the whole list back to the
 scheduler. We could modify the receiving end to accept a list as well
 or just make multiple calls to
 self.update_service_capabilities(capabilities)
 
 
 b) make a few minor changes to the scheduler to make sure filtering
 still works. Note the changes here may be very helpful:
 
 
 https://review.openstack.org/10327
 
 
 c) we have to make sure that instances launched on those nodes take up
 the entire host state somehow. We could probably do this by making
 sure that the instance_type ram, mb, gb etc. matches what the node
 has, but we may want a new boolean field used if those aren't
 sufficient.
 
 
 I This approach seems pretty good. We could potentially get rid of the
 shared bare_metal_node table. I guess the only other concern is how
 you populate the capabilities that the bare metal nodes are reporting.
 I guess an api extension that rpcs to a baremetal node to add the
 node. Maybe someday this could be autogenerated by the bare metal host
 looking in its arp table for dhcp requests! :)
 
 
 Vish
 
 ___
 OpenStack-dev mailing list
 openstack-...@lists.openstack.org
 http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
 
 ___
 OpenStack-dev mailing list
 openstack-...@lists.openstack.org
 http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp


Re: [Openstack] [openstack-dev] Discussion about where to put database for bare-metal provisioning (review 10726)

2012-08-15 Thread David Kang

 I see.
We (NTT and USC/ISI) will discuss more about that.
And we will implement according to your input.
From now, we assume to use current db.

 Here are my understanding of your comment. Please correct me if it is not 
correct.

 a) is clear.
 b) NTT Docomo has implemented some features that you mentioned in a new file 
baremetal_host_manager.py.
  We will not use baremetal_host_manager.py but will modify host_manager.py 
directly.
  I'm not sure if we have to change the scheduler. 
 c) I think used field my work. We'll look into it.

 Thanks,
 David

--
Dr. Dong-In David Kang
Computer Scientist
USC/ISI

- Original Message -
 This was an immediate goal, the bare-metal nova-compute node could
 keep an internal database, but report capabilities through nova in the
 common way with the changes below. Then the scheduler wouldn't need
 access to the bare metal database at all.
 
 On Aug 15, 2012, at 4:23 PM, David Kang dk...@isi.edu wrote:
 
 
  Hi Vish,
 
  Is this discussion for long-term goal or for this Folsom release?
 
  We still believe that bare-metal database is needed
  because there is not an automated way how bare-metal nodes report
  their capabilities
  to their bare-metal nova-compute node.
 
  Thanks,
  David
 
 
  I am interested in finding a solution that enables bare-metal and
  virtualized requests to be serviced through the same scheduler
  where
  the compute_nodes table has a full view of schedulable resources.
  This
  would seem to simplify the end-to-end flow while opening up some
  additional use cases (e.g. dynamic allocation of a node from
  bare-metal to hypervisor and back).
 
  One approach would be to have a proxy running a single nova-compute
  daemon fronting the bare-metal nodes . That nova-compute daemon
  would
  report up many HostState objects (1 per bare-metal node) to become
  entries in the compute_nodes table and accessible through the
  scheduler HostManager object.
 
 
 
 
  The HostState object would set cpu_info, vcpus, member_mb and
  local_gb
  values to be used for scheduling with the hypervisor_host field
  holding the bare-metal machine address (e.g. for IPMI based
  commands)
  and hypervisor_type = NONE. The bare-metal Flavors are created with
  an
  extra_spec of hypervisor_type= NONE and the corresponding
  compute_capabilities_filter would reduce the available hosts to
  those
  bare_metal nodes. The scheduler would need to understand that
  hypervisor_type = NONE means you need an exact fit (or best-fit)
  host
  vs weighting them (perhaps through the multi-scheduler). The
  scheduler
  would cast out the message to the topic.service-hostname (code
  today uses the HostState hostname), with the compute driver having
  to
  understand if it must be serviced elsewhere (but does not break any
  existing implementations since it is 1 to 1).
 
 
 
 
 
  Does this solution seem workable? Anything I missed?
 
  The bare metal driver already is proxying for the other nodes so it
  sounds like we need a couple of things to make this happen:
 
 
  a) modify driver.get_host_stats to be able to return a list of host
  stats instead of just one. Report the whole list back to the
  scheduler. We could modify the receiving end to accept a list as
  well
  or just make multiple calls to
  self.update_service_capabilities(capabilities)
 
 
  b) make a few minor changes to the scheduler to make sure filtering
  still works. Note the changes here may be very helpful:
 
 
  https://review.openstack.org/10327
 
 
  c) we have to make sure that instances launched on those nodes take
  up
  the entire host state somehow. We could probably do this by making
  sure that the instance_type ram, mb, gb etc. matches what the node
  has, but we may want a new boolean field used if those aren't
  sufficient.
 
 
  I This approach seems pretty good. We could potentially get rid of
  the
  shared bare_metal_node table. I guess the only other concern is how
  you populate the capabilities that the bare metal nodes are
  reporting.
  I guess an api extension that rpcs to a baremetal node to add the
  node. Maybe someday this could be autogenerated by the bare metal
  host
  looking in its arp table for dhcp requests! :)
 
 
  Vish
 
  ___
  OpenStack-dev mailing list
  openstack-...@lists.openstack.org
  http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
 
  ___
  OpenStack-dev mailing list
  openstack-...@lists.openstack.org
  http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev
 
 
 ___
 OpenStack-dev mailing list
 openstack-...@lists.openstack.org
 http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev

___
Mailing list: https://launchpad.net/~openstack
Post to : openstack@lists.launchpad.net
Unsubscribe : 

[Openstack-ubuntu-testing-notifications] Build Still Failing: quantal_folsom_nova_trunk #394

2012-08-15 Thread openstack-testing-bot
Title: quantal_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_nova_trunk/394/Project:quantal_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 04:01:56 -0400Build duration:6 min 2 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesUniqueness checks for floating ip addresses.by simplylizzeditnova/exception.pyeditnova/db/sqlalchemy/api.pyeditbin/nova-manageeditnova/db/api.pyeditnova/tests/api/openstack/compute/contrib/test_floating_ips.pyupdate python-quantumclient dependency to >=2.0by danedittools/pip-requiresAllow XML payload for volume creation.by eglynneditnova/api/openstack/volume/volumes.pyeditnova/tests/api/openstack/volume/test_volumes.pyImplement get_host_uptime in libvirt driver.by dprinceeditnova/virt/libvirt/driver.pyeditnova/tests/test_libvirt.pyRemove assigned, but unused variables from nova/db/sqlalchemy/api.pyby bfilippoveditnova/db/sqlalchemy/api.pyAdd support for NFS-based virtual block devicesby bswartzeditnova/tests/test_libvirt.pyaddnova/virt/libvirt/volume_nfs.pyConsole Output[...truncated 5565 lines...]* Automated Ubuntu testing build:* [c5a9c75] Ensure that the dom0 we're connected to is the right one* [2dcd825] Pass context to notification drivers when we can.* [b841b6a] Fix innodb tests again* [d14ac4b] Adding 'host' info to volume-compute connection  information.* [ac21815] Allow blank adminPass on server create* [03a331c] Log instance consistently.* [2511f01] Use additional task states during resize* Automated Ubuntu testing build:* [29dc47b] Use save_and_reraise_exception() from common.* [b841b6a] Fix innodb tests again* [ca2bb06] Remove unused images* [d14ac4b] Adding 'host' info to volume-compute connection  information.* [524bfb8] Update common.importutils from openstack-common.' --fixes 'lp:1002111'Can't exec "bzr": Argument list too long at /usr/bin/debcommit line 484,  line 10470.debcommit: commit failedERROR:root:Error occurred during package creation/build: Command '['debcommit']' returned non-zero exit status 7ERROR:root:Command '['debcommit']' returned non-zero exit status 7INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/quantal-folsom-proposed /tmp/tmpmFSxUl/novamk-build-deps -i -r -t apt-get -y /tmp/tmpmFSxUl/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 0e6fc4f4ddca1ea76f9f03ef03d960cad888c810..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/quantal-folsom --forcedch -b -D quantal --newversion 2012.2+git201208150405~quantal-0ubuntu1 Automated Ubuntu testing build:dch -b -D quantal --newversion 2012.2+git201208150405~quantal-0ubuntu1 Automated Ubuntu testing build:debcommitTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['debcommit']' returned non-zero exit status 7Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['debcommit']' returned non-zero exit status 7Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_nova_trunk #402

2012-08-15 Thread openstack-testing-bot
Title: precise_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_nova_trunk/402/Project:precise_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 04:01:55 -0400Build duration:7 min 52 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesUniqueness checks for floating ip addresses.by simplylizzeditnova/db/api.pyeditnova/exception.pyeditnova/db/sqlalchemy/api.pyeditbin/nova-manageeditnova/tests/api/openstack/compute/contrib/test_floating_ips.pyupdate python-quantumclient dependency to >=2.0by danedittools/pip-requiresAllow XML payload for volume creation.by eglynneditnova/tests/api/openstack/volume/test_volumes.pyeditnova/api/openstack/volume/volumes.pyImplement get_host_uptime in libvirt driver.by dprinceeditnova/tests/test_libvirt.pyeditnova/virt/libvirt/driver.pyRemove assigned, but unused variables from nova/db/sqlalchemy/api.pyby bfilippoveditnova/db/sqlalchemy/api.pyAdd support for NFS-based virtual block devicesby bswartzaddnova/virt/libvirt/volume_nfs.pyeditnova/tests/test_libvirt.pyConsole Output[...truncated 19238 lines...]Build-Time: 65Distribution: precise-folsomFail-Stage: buildInstall-Time: 41Job: nova_2012.2+git201208150405~precise-0ubuntu1.dscPackage: novaPackage-Time: 121Source-Version: 2012.2+git201208150405~precise-0ubuntu1Space: 63544Status: attemptedVersion: 2012.2+git201208150405~precise-0ubuntu1Finished at 20120815-0409Build needed 00:02:01, 63544k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208150405~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208150405~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/precise-folsom-proposed /tmp/tmpmOy0Zd/novamk-build-deps -i -r -t apt-get -y /tmp/tmpmOy0Zd/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log ed80ed615762e0ff24235b7d57fa8b356c659e11..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201208150405~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201208150405~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2012.2+git201208150405~precise-0ubuntu1_source.changessbuild -d precise-folsom -n -A nova_2012.2+git201208150405~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208150405~precise-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208150405~precise-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_glance_trunk #108

2012-08-15 Thread openstack-testing-bot
Title: precise_folsom_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_glance_trunk/108/Project:precise_folsom_glance_trunkDate of build:Wed, 15 Aug 2012 06:31:54 -0400Build duration:3 min 14 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesReturn 201 on v2 image createby bcwaldoneditglance/tests/functional/test_cache_middleware.pyeditglance/tests/unit/v2/test_images_resource.pyeditglance/tests/functional/v2/test_images.pyeditglance/api/v2/images.pyConsole Output[...truncated 3328 lines...]Build-Time: 6Distribution: precise-folsomFail-Stage: buildInstall-Time: 37Job: glance_2012.2+git201208150632~precise-0ubuntu1.dscPackage: glancePackage-Time: 55Source-Version: 2012.2+git201208150632~precise-0ubuntu1Space: 9716Status: attemptedVersion: 2012.2+git201208150632~precise-0ubuntu1Finished at 20120815-0635Build needed 00:00:55, 9716k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'glance_2012.2+git201208150632~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'glance_2012.2+git201208150632~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/glance/precise-folsom-proposed /tmp/tmpf6N8mS/glancemk-build-deps -i -r -t apt-get -y /tmp/tmpf6N8mS/glance/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 60576a5baedf910af16b26e0eedb4e487d308166..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/glance/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201208150632~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201208150632~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC glance_2012.2+git201208150632~precise-0ubuntu1_source.changessbuild -d precise-folsom -n -A glance_2012.2+git201208150632~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'glance_2012.2+git201208150632~precise-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'glance_2012.2+git201208150632~precise-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: quantal_folsom_nova_trunk #395

2012-08-15 Thread openstack-testing-bot
Title: quantal_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_nova_trunk/395/Project:quantal_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 08:23:32 -0400Build duration:5 min 42 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 5565 lines...]* Automated Ubuntu testing build:* [c5a9c75] Ensure that the dom0 we're connected to is the right one* [2dcd825] Pass context to notification drivers when we can.* [b841b6a] Fix innodb tests again* [d14ac4b] Adding 'host' info to volume-compute connection  information.* [ac21815] Allow blank adminPass on server create* [03a331c] Log instance consistently.* [2511f01] Use additional task states during resize* Automated Ubuntu testing build:* [29dc47b] Use save_and_reraise_exception() from common.* [b841b6a] Fix innodb tests again* [ca2bb06] Remove unused images* [d14ac4b] Adding 'host' info to volume-compute connection  information.* [524bfb8] Update common.importutils from openstack-common.' --fixes 'lp:1002111'Can't exec "bzr": Argument list too long at /usr/bin/debcommit line 484,  line 10469.debcommit: commit failedERROR:root:Error occurred during package creation/build: Command '['debcommit']' returned non-zero exit status 7ERROR:root:Command '['debcommit']' returned non-zero exit status 7INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/quantal-folsom-proposed /tmp/tmpqpPM13/novamk-build-deps -i -r -t apt-get -y /tmp/tmpqpPM13/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 0e6fc4f4ddca1ea76f9f03ef03d960cad888c810..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/quantal-folsom --forcedch -b -D quantal --newversion 2012.2+git201208150826~quantal-0ubuntu1 Automated Ubuntu testing build:dch -b -D quantal --newversion 2012.2+git201208150826~quantal-0ubuntu1 Automated Ubuntu testing build:debcommitTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['debcommit']' returned non-zero exit status 7Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['debcommit']' returned non-zero exit status 7Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: quantal_folsom_nova_trunk #396

2012-08-15 Thread openstack-testing-bot
Title: quantal_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_nova_trunk/396/Project:quantal_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 08:55:36 -0400Build duration:11 minBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdded several operators on instance_type_extra_specs.by jsuheditnova/scheduler/filters/compute_capabilities_filter.pyeditnova/tests/scheduler/test_host_filters.pyConsole Output[...truncated 19790 lines...]Build-Time: 60Distribution: quantal-folsomFail-Stage: buildInstall-Time: 46Job: nova_2012.2+git201208150902~quantal-0ubuntu1.dscPackage: novaPackage-Time: 124Source-Version: 2012.2+git201208150902~quantal-0ubuntu1Space: 63644Status: attemptedVersion: 2012.2+git201208150902~quantal-0ubuntu1Finished at 20120815-0907Build needed 00:02:04, 63644k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'quantal-folsom', '-n', '-A', 'nova_2012.2+git201208150902~quantal-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'quantal-folsom', '-n', '-A', 'nova_2012.2+git201208150902~quantal-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/quantal-folsom-proposed /tmp/tmpRo6KNH/novamk-build-deps -i -r -t apt-get -y /tmp/tmpRo6KNH/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log ca950e7ea3909110fe05e3239975b7545423670a..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/quantal-folsom --forcedch -b -D quantal --newversion 2012.2+git201208150902~quantal-0ubuntu1 Automated Ubuntu testing build:dch -b -D quantal --newversion 2012.2+git201208150902~quantal-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2012.2+git201208150902~quantal-0ubuntu1_source.changessbuild -d quantal-folsom -n -A nova_2012.2+git201208150902~quantal-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'quantal-folsom', '-n', '-A', 'nova_2012.2+git201208150902~quantal-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'quantal-folsom', '-n', '-A', 'nova_2012.2+git201208150902~quantal-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_nova_trunk #403

2012-08-15 Thread openstack-testing-bot
Title: precise_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_nova_trunk/403/Project:precise_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 09:01:55 -0400Build duration:10 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdded several operators on instance_type_extra_specs.by jsuheditnova/tests/scheduler/test_host_filters.pyeditnova/scheduler/filters/compute_capabilities_filter.pyConsole Output[...truncated 19155 lines...]Build-Time: 61Distribution: precise-folsomFail-Stage: buildInstall-Time: 41Job: nova_2012.2+git201208150907~precise-0ubuntu1.dscPackage: novaPackage-Time: 115Source-Version: 2012.2+git201208150907~precise-0ubuntu1Space: 63596Status: attemptedVersion: 2012.2+git201208150907~precise-0ubuntu1Finished at 20120815-0912Build needed 00:01:55, 63596k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208150907~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208150907~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/precise-folsom-proposed /tmp/tmpTuEpdJ/novamk-build-deps -i -r -t apt-get -y /tmp/tmpTuEpdJ/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log ca950e7ea3909110fe05e3239975b7545423670a..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201208150907~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201208150907~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2012.2+git201208150907~precise-0ubuntu1_source.changessbuild -d precise-folsom -n -A nova_2012.2+git201208150907~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208150907~precise-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208150907~precise-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_nova_trunk #404

2012-08-15 Thread openstack-testing-bot
Title: precise_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_nova_trunk/404/Project:precise_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 10:01:54 -0400Build duration:7 min 19 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesRemove unnecessary try/finally from snapshotby markmceditnova/compute/manager.pyConsole Output[...truncated 211 lines...]W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/multiverse/source/Sources  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/main/binary-amd64/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/restricted/binary-amd64/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/universe/binary-amd64/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/multiverse/binary-amd64/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/main/binary-i386/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/restricted/binary-i386/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/universe/binary-i386/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/multiverse/binary-i386/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/main/i18n/Translation-en  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/multiverse/i18n/Translation-en  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/restricted/i18n/Translation-en  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/universe/i18n/Translation-en  Unable to connect to archive.ubuntu.com:http:E: Some index files failed to download. They have been ignored, or old ones used instead.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-61ed97ec-fe9f-469b-95d0-b80a1ccbc917', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-61ed97ec-fe9f-469b-95d0-b80a1ccbc917', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100INFO:root:Complete command log:INFO:root:Destroying schroot.Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-61ed97ec-fe9f-469b-95d0-b80a1ccbc917', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-61ed97ec-fe9f-469b-95d0-b80a1ccbc917', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: quantal_folsom_nova_trunk #397

2012-08-15 Thread openstack-testing-bot
Title: quantal_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_nova_trunk/397/Project:quantal_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 10:01:56 -0400Build duration:1 hr 48 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesRemove unnecessary try/finally from snapshotby markmceditnova/compute/manager.pyConsole Output[...truncated 164 lines...]W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal/multiverse/binary-i386/Packages  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/main/source/Sources  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/restricted/source/Sources  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/universe/source/Sources  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/multiverse/source/Sources  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/main/binary-amd64/Packages  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/restricted/binary-amd64/Packages  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/universe/binary-amd64/Packages  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/multiverse/binary-amd64/Packages  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/main/binary-i386/Packages  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/restricted/binary-i386/Packages  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/universe/binary-i386/Packages  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/multiverse/binary-i386/Packages  503  Service UnavailableE: Some index files failed to download. They have been ignored, or old ones used instead.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'quantal-amd64-dbb5073c-03b6-4112-88d9-9c5c1ae136cc', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'quantal-amd64-dbb5073c-03b6-4112-88d9-9c5c1ae136cc', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100INFO:root:Complete command log:INFO:root:Destroying schroot.Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'quantal-amd64-dbb5073c-03b6-4112-88d9-9c5c1ae136cc', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'quantal-amd64-dbb5073c-03b6-4112-88d9-9c5c1ae136cc', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_cinder_trunk #44

2012-08-15 Thread openstack-testing-bot
Title: precise_folsom_cinder_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_cinder_trunk/44/Project:precise_folsom_cinder_trunkDate of build:Wed, 15 Aug 2012 12:01:55 -0400Build duration:1 min 40 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesMap internal exceptions in the nova style.by eglynneditcinder/exception.pyeditcinder/api/openstack/__init__.pyeditcinder/utils.pyeditcinder/tests/test_wsgi.pyConsole Output[...truncated 211 lines...]W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/multiverse/source/Sources  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/main/binary-amd64/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/restricted/binary-amd64/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/universe/binary-amd64/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/multiverse/binary-amd64/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/main/binary-i386/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/restricted/binary-i386/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/universe/binary-i386/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/multiverse/binary-i386/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/main/i18n/Translation-en  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/multiverse/i18n/Translation-en  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/restricted/i18n/Translation-en  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/universe/i18n/Translation-en  Unable to connect to archive.ubuntu.com:http:E: Some index files failed to download. They have been ignored, or old ones used instead.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-baef7a45-43ed-4321-b758-25c06eb17d1c', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-baef7a45-43ed-4321-b758-25c06eb17d1c', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100INFO:root:Complete command log:INFO:root:Destroying schroot.Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-baef7a45-43ed-4321-b758-25c06eb17d1c', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-baef7a45-43ed-4321-b758-25c06eb17d1c', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: precise_folsom_horizon_trunk #91

2012-08-15 Thread openstack-testing-bot
Title: precise_folsom_horizon_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_horizon_trunk/91/Project:precise_folsom_horizon_trunkDate of build:Wed, 15 Aug 2012 12:31:56 -0400Build duration:2 min 24 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesAdds _javascript_ console logging for debug mode.by gabrieledithorizon/static/horizon/js/horizon.utils.jsedithorizon/static/horizon/js/horizon.tables.jsConsole Output[...truncated 632 lines...]W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/main/binary-i386/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/restricted/binary-i386/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/universe/binary-i386/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/multiverse/binary-i386/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/main/i18n/Translation-en  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/multiverse/i18n/Translation-en  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/restricted/i18n/Translation-en  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/universe/i18n/Translation-en  Unable to connect to archive.ubuntu.com:http:E: Some index files failed to download. They have been ignored, or old ones used instead.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-627c7ce4-63ec-4a6c-9ca9-7171535d170e', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-627c7ce4-63ec-4a6c-9ca9-7171535d170e', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100INFO:root:Complete command log:INFO:root:Destroying schroot.git archive master --format tar --prefix horizon-2012.2-201208151233/git archive master --format tar --prefix horizon-2012.2-201208151233/git log -n1 --no-merges --pretty=format:%Hgit log f280caac40eefc3e9012cbd425181f2ad1e98f01..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~openstack-ubuntu-testing/horizon/precise-folsom-proposed horizonbzr merge lp:~openstack-ubuntu-testing/horizon/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201208151233~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201208151233~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-627c7ce4-63ec-4a6c-9ca9-7171535d170e', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-627c7ce4-63ec-4a6c-9ca9-7171535d170e', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: quantal_folsom_cinder_trunk #48

2012-08-15 Thread openstack-testing-bot
Title: quantal_folsom_cinder_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_cinder_trunk/48/Project:quantal_folsom_cinder_trunkDate of build:Wed, 15 Aug 2012 12:01:54 -0400Build duration:37 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 3 out of the last 5 builds failed.40ChangesMap internal exceptions in the nova style.by eglynneditcinder/utils.pyeditcinder/exception.pyeditcinder/tests/test_wsgi.pyeditcinder/api/openstack/__init__.pyConsole Output[...truncated 164 lines...]W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal/multiverse/binary-i386/Packages  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/main/source/Sources  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/restricted/source/Sources  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/universe/source/Sources  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/multiverse/source/Sources  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/main/binary-amd64/Packages  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/restricted/binary-amd64/Packages  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/universe/binary-amd64/Packages  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/multiverse/binary-amd64/Packages  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/main/binary-i386/Packages  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/restricted/binary-i386/Packages  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/universe/binary-i386/Packages  503  Service UnavailableW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/multiverse/binary-i386/Packages  404  Not FoundE: Some index files failed to download. They have been ignored, or old ones used instead.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'quantal-amd64-4178e508-b6cd-4881-b8ce-399248cc3af3', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'quantal-amd64-4178e508-b6cd-4881-b8ce-399248cc3af3', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100INFO:root:Complete command log:INFO:root:Destroying schroot.Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'quantal-amd64-4178e508-b6cd-4881-b8ce-399248cc3af3', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'quantal-amd64-4178e508-b6cd-4881-b8ce-399248cc3af3', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: quantal_folsom_nova_trunk #398

2012-08-15 Thread openstack-testing-bot
Title: quantal_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_nova_trunk/398/Project:quantal_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 12:31:57 -0400Build duration:15 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0Changesxenapi: remove unnecessary json decoding of injected_filesby johannes.erdfelteditnova/virt/xenapi/fake.pyeditnova/tests/test_xenapi.pyeditnova/virt/xenapi/vmops.pyConsole Output[...truncated 157 lines...]W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal/multiverse/binary-i386/Packages  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/main/source/Sources  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/restricted/source/Sources  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/universe/source/Sources  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/multiverse/source/Sources  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/main/binary-amd64/Packages  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/restricted/binary-amd64/Packages  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/universe/binary-amd64/Packages  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/multiverse/binary-amd64/Packages  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/main/binary-i386/Packages  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/restricted/binary-i386/Packages  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/universe/binary-i386/Packages  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/quantal-updates/multiverse/binary-i386/Packages  404  Not FoundE: Some index files failed to download. They have been ignored, or old ones used instead.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'quantal-amd64-f9c39126-b8d5-41df-9f81-b86e66e2e43f', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'quantal-amd64-f9c39126-b8d5-41df-9f81-b86e66e2e43f', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100INFO:root:Complete command log:INFO:root:Destroying schroot.Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'quantal-amd64-f9c39126-b8d5-41df-9f81-b86e66e2e43f', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'quantal-amd64-f9c39126-b8d5-41df-9f81-b86e66e2e43f', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_nova_trunk #405

2012-08-15 Thread openstack-testing-bot
Title: precise_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_nova_trunk/405/Project:precise_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 12:34:21 -0400Build duration:13 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0Changesxenapi: remove unnecessary json decoding of injected_filesby johannes.erdfelteditnova/virt/xenapi/vmops.pyeditnova/tests/test_xenapi.pyeditnova/virt/xenapi/fake.pyConsole Output[...truncated 181 lines...]W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise/multiverse/binary-i386/Packages  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/main/source/Sources  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/restricted/source/Sources  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/universe/source/Sources  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/multiverse/source/Sources  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/main/binary-amd64/Packages  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/restricted/binary-amd64/Packages  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/universe/binary-amd64/Packages  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/multiverse/binary-amd64/Packages  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/main/binary-i386/Packages  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/restricted/binary-i386/Packages  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/universe/binary-i386/Packages  404  Not FoundW: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/multiverse/binary-i386/Packages  404  Not FoundE: Some index files failed to download. They have been ignored, or old ones used instead.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-6aa69a55-da5c-4665-9e12-82a5e76dc0fc', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-6aa69a55-da5c-4665-9e12-82a5e76dc0fc', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100INFO:root:Complete command log:INFO:root:Destroying schroot.Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-6aa69a55-da5c-4665-9e12-82a5e76dc0fc', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-6aa69a55-da5c-4665-9e12-82a5e76dc0fc', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: precise_folsom_quantum_trunk #105

2012-08-15 Thread openstack-testing-bot
Title: precise_folsom_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_quantum_trunk/105/Project:precise_folsom_quantum_trunkDate of build:Wed, 15 Aug 2012 13:01:53 -0400Build duration:1 min 41 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesUpdate README for v2 API.by gkottoneditREADMEConsole Output[...truncated 633 lines...]W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/main/binary-i386/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/restricted/binary-i386/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/universe/binary-i386/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/multiverse/binary-i386/Packages  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/main/i18n/Translation-en  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/multiverse/i18n/Translation-en  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/restricted/i18n/Translation-en  Unable to connect to archive.ubuntu.com:http:W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/precise-updates/universe/i18n/Translation-en  Unable to connect to archive.ubuntu.com:http:E: Some index files failed to download. They have been ignored, or old ones used instead.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-9abf3c59-08c8-4b18-ad2a-b4ee0562394a', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-9abf3c59-08c8-4b18-ad2a-b4ee0562394a', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100INFO:root:Complete command log:INFO:root:Destroying schroot.git archive master --format tar --prefix quantum-2012.2-201208151302/git archive master --format tar --prefix quantum-2012.2-201208151302/git log -n1 --no-merges --pretty=format:%Hgit log 1fc3f557427385ca6759e2bdc3e7639d2af95286..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~openstack-ubuntu-testing/quantum/precise-folsom-proposed quantumbzr merge lp:~openstack-ubuntu-testing/quantum/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201208151302~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201208151302~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-9abf3c59-08c8-4b18-ad2a-b4ee0562394a', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-9abf3c59-08c8-4b18-ad2a-b4ee0562394a', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: quantal_folsom_nova_trunk #401

2012-08-15 Thread openstack-testing-bot
Title: quantal_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_nova_trunk/401/Project:quantal_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 13:31:52 -0400Build duration:7 min 37 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 2175 lines...]hard linking tools/xenserver/stress_test.py -> nova-2012.2/tools/xenserverhard linking tools/xenserver/vdi_chain_cleanup.py -> nova-2012.2/tools/xenserverhard linking tools/xenserver/vm_vdi_cleaner.py -> nova-2012.2/tools/xenservercopying setup.cfg -> nova-2012.2Writing nova-2012.2/setup.cfgcreating distCreating tar archiveremoving 'nova-2012.2' (and everything under it)INFO:root:Building package using /tmp/tmpEvgF9F/nova_2012.2+git201208151336~quantal.orig.tar.gzINFO:root:Generating git changelog entries for this packageDEBUG:root:['git', 'log', '-n1', '--no-merges', '--pretty=format:%H']DEBUG:root:35c12feb8c9467b9b4a7eac7a3f3d63bd620a35bINFO:root:Detected previous commit - readingDEBUG:root:['git', 'log', 'ca950e7ea3909110fe05e3239975b7545423670a..HEAD', '--no-merges', '--pretty=format:[%h] %s']INFO:root:Merging testing branch from launchpadDEBUG:root:['bzr', 'merge', 'lp:~openstack-ubuntu-testing/nova/quantal-folsom', '--force']Not attempting to fix packaging branch ancestry, missing pristine tar data for version 2012.2+git201208071932~quantal. M  debian/changelog M  debian/controlText conflict in debian/changelog1 conflicts encountered.ERROR:root:Error occurred during package creation/build: Command '['bzr', 'merge', 'lp:~openstack-ubuntu-testing/nova/quantal-folsom', '--force']' returned non-zero exit status 1ERROR:root:Command '['bzr', 'merge', 'lp:~openstack-ubuntu-testing/nova/quantal-folsom', '--force']' returned non-zero exit status 1INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/quantal-folsom-proposed /tmp/tmpEvgF9F/novamk-build-deps -i -r -t apt-get -y /tmp/tmpEvgF9F/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log ca950e7ea3909110fe05e3239975b7545423670a..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/quantal-folsom --forceTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['bzr', 'merge', 'lp:~openstack-ubuntu-testing/nova/quantal-folsom', '--force']' returned non-zero exit status 1Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['bzr', 'merge', 'lp:~openstack-ubuntu-testing/nova/quantal-folsom', '--force']' returned non-zero exit status 1Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: quantal_folsom_cinder_trunk #49

2012-08-15 Thread openstack-testing-bot
Title: quantal_folsom_cinder_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_cinder_trunk/49/Project:quantal_folsom_cinder_trunkDate of build:Wed, 15 Aug 2012 14:02:02 -0400Build duration:6 min 17 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesMove volume size validation to api layer.by eglynneditcinder/volume/api.pyeditcinder/tests/test_volume.pyeditcinder/tests/api/openstack/volume/test_volumes.pyeditcinder/api/openstack/volume/volumes.pyConsole Output[...truncated 5020 lines...]gpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "gpg: Signature made Wed Aug 15 14:06:00 2012 EDT using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "Checking signature on .changesGood signature on /tmp/tmpElsz2j/cinder_2012.2+git201208151402~quantal-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmpElsz2j/cinder_2012.2+git201208151402~quantal-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading cinder_2012.2+git201208151402~quantal-0ubuntu1.dsc: done.  Uploading cinder_2012.2+git201208151402~quantal.orig.tar.gz: done.  Uploading cinder_2012.2+git201208151402~quantal-0ubuntu1.debian.tar.gz: done.  Uploading cinder_2012.2+git201208151402~quantal-0ubuntu1_source.changes: done.Successfully uploaded packages.INFO:root:Installing build artifacts into /var/lib/jenkins/www/aptDEBUG:root:['reprepro', '--waitforlock', '10', '-Vb', '/var/lib/jenkins/www/apt', 'include', 'quantal-folsom', 'cinder_2012.2+git201208151402~quantal-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/quantal-folsom/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/quantal-folsom/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/c/cinder/cinder-api_2012.2+git201208141702~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/c/cinder/cinder-common_2012.2+git201208141702~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/c/cinder/cinder-scheduler_2012.2+git201208141702~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/c/cinder/cinder-volume_2012.2+git201208141702~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/c/cinder/python-cinder_2012.2+git201208141702~quantal-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/cinder/quantal-folsom']Pushed up to revision 31.INFO:root:Storing current commit for next build: f5ebb33f9a0ebc3b8f6d0e0d97e3d4b673106907INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/cinder/quantal-folsom-proposed /tmp/tmpElsz2j/cindermk-build-deps -i -r -t apt-get -y /tmp/tmpElsz2j/cinder/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log ff45e32b97a7b87a611715ba61f0ebab5185edc3..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/cinder/quantal-folsom --forcedch -b -D quantal --newversion 2012.2+git201208151402~quantal-0ubuntu1 Automated Ubuntu testing build:dch -b -D quantal --newversion 2012.2+git201208151402~quantal-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC cinder_2012.2+git201208151402~quantal-0ubuntu1_source.changessbuild -d quantal-folsom -n -A cinder_2012.2+git201208151402~quantal-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/folsom-trunk-testing cinder_2012.2+git201208151402~quantal-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include quantal-folsom cinder_2012.2+git201208151402~quantal-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/cinder/quantal-folsomEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: quantal_folsom_nova_trunk #402

2012-08-15 Thread openstack-testing-bot
Title: quantal_folsom_nova_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_nova_trunk/402/Project:quantal_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 14:18:15 -0400Build duration:18 minBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesAdd PowerVM compute driver and unit tests.by tmelloaddnova/virt/powervm/command.pyaddnova/virt/powervm/common.pyaddnova/tests/test_powervm.pyaddnova/virt/powervm/driver.pyaddnova/virt/powervm/constants.pyaddnova/virt/powervm/operator.pyaddnova/virt/powervm/exception.pyaddnova/virt/powervm/lpar.pyaddnova/virt/powervm/__init__.pyPort pre_block_migration to new image cachingby mikaleditnova/tests/test_libvirt.pyeditnova/virt/libvirt/driver.pyDefined IMPL in global ipv6 namespace.by justin.hammondeditnova/ipv6/api.pyConsole Output[...truncated 25662 lines...]deleting and forgetting pool/main/n/nova/nova-api-os-volume_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-api_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-cert_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-common_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-kvm_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-lxc_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-qemu_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-uml_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-xcp_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-xen_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-console_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-consoleauth_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-doc_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-network_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-objectstore_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-scheduler_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-vncproxy_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-volume_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xcp-network_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xcp-plugins_2012.2+git201208071932~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/python-nova_2012.2+git201208071932~quantal-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/nova/quantal-folsom']Pushed up to revision 429.INFO:root:Storing current commit for next build: 4becac7cc1045304143752d8223a1b02d77c4ccdINFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/quantal-folsom-proposed /tmp/tmp8Nc2Au/novamk-build-deps -i -r -t apt-get -y /tmp/tmp8Nc2Au/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log ca950e7ea3909110fe05e3239975b7545423670a..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/quantal-folsom --forcedch -b -D quantal --newversion 2012.2+git201208151430~quantal-0ubuntu1 Automated Ubuntu testing build:dch -b -D quantal --newversion 2012.2+git201208151430~quantal-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2012.2+git201208151430~quantal-0ubuntu1_source.changessbuild -d quantal-folsom -n -A nova_2012.2+git201208151430~quantal-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/folsom-trunk-testing nova_2012.2+git201208151430~quantal-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include quantal-folsom nova_2012.2+git201208151430~quantal-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/nova/quantal-folsom+ [ ! 0 ]+ jenkins-cli build quantal_folsom_deployEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : 

[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_nova_trunk #407

2012-08-15 Thread openstack-testing-bot
Title: precise_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_nova_trunk/407/Project:precise_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 14:31:58 -0400Build duration:15 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd PowerVM compute driver and unit tests.by tmelloaddnova/virt/powervm/driver.pyaddnova/virt/powervm/constants.pyaddnova/tests/test_powervm.pyaddnova/virt/powervm/common.pyaddnova/virt/powervm/command.pyaddnova/virt/powervm/lpar.pyaddnova/virt/powervm/exception.pyaddnova/virt/powervm/__init__.pyaddnova/virt/powervm/operator.pyPort pre_block_migration to new image cachingby mikaleditnova/tests/test_libvirt.pyeditnova/virt/libvirt/driver.pyDefined IMPL in global ipv6 namespace.by justin.hammondeditnova/ipv6/api.pyConsole Output[...truncated 19423 lines...]Build-Time: 64Distribution: precise-folsomFail-Stage: buildInstall-Time: 42Job: nova_2012.2+git201208151442~precise-0ubuntu1.dscPackage: novaPackage-Time: 122Source-Version: 2012.2+git201208151442~precise-0ubuntu1Space: 63980Status: attemptedVersion: 2012.2+git201208151442~precise-0ubuntu1Finished at 20120815-1446Build needed 00:02:02, 63980k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208151442~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208151442~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/precise-folsom-proposed /tmp/tmpLch6ob/novamk-build-deps -i -r -t apt-get -y /tmp/tmpLch6ob/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log ca950e7ea3909110fe05e3239975b7545423670a..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201208151442~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201208151442~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2012.2+git201208151442~precise-0ubuntu1_source.changessbuild -d precise-folsom -n -A nova_2012.2+git201208151442~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208151442~precise-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208151442~precise-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: precise_folsom_horizon_trunk #92

2012-08-15 Thread openstack-testing-bot
Title: precise_folsom_horizon_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_horizon_trunk/92/Project:precise_folsom_horizon_trunkDate of build:Wed, 15 Aug 2012 15:01:54 -0400Build duration:4 min 12 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesAdding missing files to MANIFEST.inby thierryeditMANIFEST.inConsole Output[...truncated 6202 lines...]gpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "gpg: Signature made Wed Aug 15 15:04:28 2012 EDT using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "Checking signature on .changesGood signature on /tmp/tmpT2p1sN/horizon_2012.2+git201208151502~precise-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmpT2p1sN/horizon_2012.2+git201208151502~precise-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading horizon_2012.2+git201208151502~precise-0ubuntu1.dsc: done.  Uploading horizon_2012.2+git201208151502~precise.orig.tar.gz: done.  Uploading horizon_2012.2+git201208151502~precise-0ubuntu1.debian.tar.gz: done.  Uploading horizon_2012.2+git201208151502~precise-0ubuntu1_source.changes: done.Successfully uploaded packages.INFO:root:Installing build artifacts into /var/lib/jenkins/www/aptDEBUG:root:['reprepro', '--waitforlock', '10', '-Vb', '/var/lib/jenkins/www/apt', 'include', 'precise-folsom', 'horizon_2012.2+git201208151502~precise-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/precise-folsom/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/precise-folsom/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/h/horizon/openstack-dashboard-ubuntu-theme_2012.2+git201208142232~precise-0ubuntu1_all.debdeleting and forgetting pool/main/h/horizon/openstack-dashboard_2012.2+git201208142232~precise-0ubuntu1_all.debdeleting and forgetting pool/main/h/horizon/python-django-horizon_2012.2+git201208142232~precise-0ubuntu1_all.debdeleting and forgetting pool/main/h/horizon/python-django-openstack_2012.2+git201208142232~precise-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/horizon/precise-folsom']Pushed up to revision 100.INFO:root:Storing current commit for next build: 27752e337a6a0fd130efe160ee357a811815df66INFO:root:Complete command log:INFO:root:Destroying schroot.git archive master --format tar --prefix horizon-2012.2-201208151502/git archive master --format tar --prefix horizon-2012.2-201208151502/git log -n1 --no-merges --pretty=format:%Hgit log f280caac40eefc3e9012cbd425181f2ad1e98f01..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~openstack-ubuntu-testing/horizon/precise-folsom-proposed horizonbzr merge lp:~openstack-ubuntu-testing/horizon/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201208151502~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201208151502~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucmk-build-deps -i -r -t apt-get -y /tmp/tmpT2p1sN/horizon/debian/controlbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC horizon_2012.2+git201208151502~precise-0ubuntu1_source.changessbuild -d precise-folsom -n -A horizon_2012.2+git201208151502~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/folsom-trunk-testing horizon_2012.2+git201208151502~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-folsom horizon_2012.2+git201208151502~precise-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/horizon/precise-folsomEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: quantal_folsom_horizon_trunk #95

2012-08-15 Thread openstack-testing-bot
Title: quantal_folsom_horizon_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_horizon_trunk/95/Project:quantal_folsom_horizon_trunkDate of build:Wed, 15 Aug 2012 15:01:55 -0400Build duration:4 min 23 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesAdding missing files to MANIFEST.inby thierryeditMANIFEST.inConsole Output[...truncated 6300 lines...]gpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "gpg: Signature made Wed Aug 15 15:04:47 2012 EDT using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "Checking signature on .changesGood signature on /tmp/tmpGoceKW/horizon_2012.2+git201208151502~quantal-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmpGoceKW/horizon_2012.2+git201208151502~quantal-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading horizon_2012.2+git201208151502~quantal-0ubuntu1.dsc: done.  Uploading horizon_2012.2+git201208151502~quantal.orig.tar.gz: done.  Uploading horizon_2012.2+git201208151502~quantal-0ubuntu1.debian.tar.gz: done.  Uploading horizon_2012.2+git201208151502~quantal-0ubuntu1_source.changes: done.Successfully uploaded packages.INFO:root:Installing build artifacts into /var/lib/jenkins/www/aptDEBUG:root:['reprepro', '--waitforlock', '10', '-Vb', '/var/lib/jenkins/www/apt', 'include', 'quantal-folsom', 'horizon_2012.2+git201208151502~quantal-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/quantal-folsom/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/quantal-folsom/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/h/horizon/openstack-dashboard-ubuntu-theme_2012.2+git201208150204~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/h/horizon/openstack-dashboard_2012.2+git201208150204~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/h/horizon/python-django-horizon_2012.2+git201208150204~quantal-0ubuntu1_all.debdeleting and forgetting pool/main/h/horizon/python-django-openstack_2012.2+git201208150204~quantal-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/horizon/quantal-folsom']Pushed up to revision 119.INFO:root:Storing current commit for next build: 27752e337a6a0fd130efe160ee357a811815df66INFO:root:Complete command log:INFO:root:Destroying schroot.git archive master --format tar --prefix horizon-2012.2-201208151502/git archive master --format tar --prefix horizon-2012.2-201208151502/git log -n1 --no-merges --pretty=format:%Hgit log f280caac40eefc3e9012cbd425181f2ad1e98f01..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~openstack-ubuntu-testing/horizon/quantal-folsom-proposed horizonbzr merge lp:~openstack-ubuntu-testing/horizon/quantal-folsom --forcedch -b -D quantal --newversion 2012.2+git201208151502~quantal-0ubuntu1 Automated Ubuntu testing build:dch -b -D quantal --newversion 2012.2+git201208151502~quantal-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucmk-build-deps -i -r -t apt-get -y /tmp/tmpGoceKW/horizon/debian/controlbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC horizon_2012.2+git201208151502~quantal-0ubuntu1_source.changessbuild -d quantal-folsom -n -A horizon_2012.2+git201208151502~quantal-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/folsom-trunk-testing horizon_2012.2+git201208151502~quantal-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include quantal-folsom horizon_2012.2+git201208151502~quantal-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/horizon/quantal-folsomEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: precise_folsom_cinder_trunk #46

2012-08-15 Thread openstack-testing-bot
Title: precise_folsom_cinder_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_cinder_trunk/46/Project:precise_folsom_cinder_trunkDate of build:Wed, 15 Aug 2012 16:01:53 -0400Build duration:3 min 40 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesRemove utils.deprecated functions.by dprinceeditcinder/utils.pyeditcinder/tests/test_utils.pyConsole Output[...truncated 4543 lines...]gpg: Signature made Wed Aug 15 16:03:50 2012 EDT using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "Checking signature on .changesGood signature on /tmp/tmpFFh_Op/cinder_2012.2+git201208151602~precise-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmpFFh_Op/cinder_2012.2+git201208151602~precise-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading cinder_2012.2+git201208151602~precise-0ubuntu1.dsc: done.  Uploading cinder_2012.2+git201208151602~precise.orig.tar.gz: done.  Uploading cinder_2012.2+git201208151602~precise-0ubuntu1.debian.tar.gz: done.  Uploading cinder_2012.2+git201208151602~precise-0ubuntu1_source.changes: done.Successfully uploaded packages.INFO:root:Installing build artifacts into /var/lib/jenkins/www/aptDEBUG:root:['reprepro', '--waitforlock', '10', '-Vb', '/var/lib/jenkins/www/apt', 'include', 'precise-folsom', 'cinder_2012.2+git201208151602~precise-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/precise-folsom/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/precise-folsom/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/c/cinder/cinder-api_2012.2+git201208101132~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/cinder/cinder-common_2012.2+git201208101132~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/cinder/cinder-scheduler_2012.2+git201208101132~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/cinder/cinder-volume_2012.2+git201208101132~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/cinder/python-cinder_2012.2+git201208101132~precise-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/cinder/precise-folsom']Pushed up to revision 12.2 tags updated.INFO:root:Storing current commit for next build: 12aae1a0728629f9e4e4cc2542756653aab2657bINFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/cinder/precise-folsom-proposed /tmp/tmpFFh_Op/cindermk-build-deps -i -r -t apt-get -y /tmp/tmpFFh_Op/cinder/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 69aa04d1f89c838d2ea1c96e715e175fb26f0883..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/cinder/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201208151602~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201208151602~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC cinder_2012.2+git201208151602~precise-0ubuntu1_source.changessbuild -d precise-folsom -n -A cinder_2012.2+git201208151602~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/folsom-trunk-testing cinder_2012.2+git201208151602~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-folsom cinder_2012.2+git201208151602~precise-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/cinder/precise-folsomEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: precise_folsom_quantum_trunk #106

2012-08-15 Thread openstack-testing-bot
Title: precise_folsom_quantum_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_quantum_trunk/106/Project:precise_folsom_quantum_trunkDate of build:Wed, 15 Aug 2012 16:31:54 -0400Build duration:4 min 45 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesFix flavor extension based on new attribute extension specby nachieditquantum/extensions/flavor.pyConsole Output[...truncated 4176 lines...]Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading quantum_2012.2+git201208151632~precise-0ubuntu1.dsc: done.  Uploading quantum_2012.2+git201208151632~precise.orig.tar.gz: done.  Uploading quantum_2012.2+git201208151632~precise-0ubuntu1.debian.tar.gz: done.  Uploading quantum_2012.2+git201208151632~precise-0ubuntu1_source.changes: done.Successfully uploaded packages.INFO:root:Installing build artifacts into /var/lib/jenkins/www/aptDEBUG:root:['reprepro', '--waitforlock', '10', '-Vb', '/var/lib/jenkins/www/apt', 'include', 'precise-folsom', 'quantum_2012.2+git201208151632~precise-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/precise-folsom/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/precise-folsom/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/q/quantum/python-quantum_2012.2+git201208150432~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-common_2012.2+git201208150432~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-cisco_2012.2+git201208150432~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-linuxbridge-agent_2012.2+git201208150432~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-linuxbridge_2012.2+git201208150432~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-nicira_2012.2+git201208150432~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-openvswitch-agent_2012.2+git201208150432~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-openvswitch_2012.2+git201208150432~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-ryu-agent_2012.2+git201208150432~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-plugin-ryu_2012.2+git201208150432~precise-0ubuntu1_all.debdeleting and forgetting pool/main/q/quantum/quantum-server_2012.2+git201208150432~precise-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/quantum/precise-folsom']Pushed up to revision 39.INFO:root:Storing current commit for next build: bec4afe860c59a6232a88d164eaaca5087f985baINFO:root:Complete command log:INFO:root:Destroying schroot.git archive master --format tar --prefix quantum-2012.2-201208151632/git archive master --format tar --prefix quantum-2012.2-201208151632/git log -n1 --no-merges --pretty=format:%Hgit log 1fc3f557427385ca6759e2bdc3e7639d2af95286..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~openstack-ubuntu-testing/quantum/precise-folsom-proposed quantumbzr merge lp:~openstack-ubuntu-testing/quantum/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201208151632~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201208151632~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucmk-build-deps -i -r -t apt-get -y /tmp/tmpmDVJks/quantum/debian/controlbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC quantum_2012.2+git201208151632~precise-0ubuntu1_source.changessbuild -d precise-folsom -n -A quantum_2012.2+git201208151632~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/folsom-trunk-testing quantum_2012.2+git201208151632~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-folsom quantum_2012.2+git201208151632~precise-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/quantum/precise-folsomEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_glance_trunk #109

2012-08-15 Thread openstack-testing-bot
Title: precise_folsom_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_glance_trunk/109/Project:precise_folsom_glance_trunkDate of build:Wed, 15 Aug 2012 17:31:53 -0400Build duration:4 min 7 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd policy enforcment for v2 api.by bcwaldoneditglance/tests/unit/utils.pyeditglance/tests/unit/v2/test_images_resource.pyeditglance/api/v2/images.pyConsole Output[...truncated 3351 lines...]Build-Time: 6Distribution: precise-folsomFail-Stage: buildInstall-Time: 52Job: glance_2012.2+git201208151732~precise-0ubuntu1.dscPackage: glancePackage-Time: 73Source-Version: 2012.2+git201208151732~precise-0ubuntu1Space: 9720Status: attemptedVersion: 2012.2+git201208151732~precise-0ubuntu1Finished at 20120815-1735Build needed 00:01:13, 9720k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'glance_2012.2+git201208151732~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'glance_2012.2+git201208151732~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/glance/precise-folsom-proposed /tmp/tmpcSszzv/glancemk-build-deps -i -r -t apt-get -y /tmp/tmpcSszzv/glance/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 60576a5baedf910af16b26e0eedb4e487d308166..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/glance/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201208151732~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201208151732~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC glance_2012.2+git201208151732~precise-0ubuntu1_source.changessbuild -d precise-folsom -n -A glance_2012.2+git201208151732~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'glance_2012.2+git201208151732~precise-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'glance_2012.2+git201208151732~precise-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: quantal_folsom_nova_trunk #403

2012-08-15 Thread openstack-testing-bot
Title: quantal_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_nova_trunk/403/Project:quantal_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 17:31:59 -0400Build duration:8 min 24 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesChange IPtablesManager to preserve packet:byte counts.by brian.haleyeditnova/tests/xenapi/stubs.pyeditnova/network/linux_net.pyeditnova/tests/test_libvirt.pyeditnova/tests/test_xenapi.pyeditnova/tests/test_iptables_network.pyConsole Output[...truncated 5079 lines...]* Automated Ubuntu testing build:* [c5a9c75] Ensure that the dom0 we're connected to is the right one* [2dcd825] Pass context to notification drivers when we can.* [b841b6a] Fix innodb tests again* [d14ac4b] Adding 'host' info to volume-compute connection  information.* [ac21815] Allow blank adminPass on server create* [03a331c] Log instance consistently.* [2511f01] Use additional task states during resize* Automated Ubuntu testing build:* [29dc47b] Use save_and_reraise_exception() from common.* [b841b6a] Fix innodb tests again* [ca2bb06] Remove unused images* [d14ac4b] Adding 'host' info to volume-compute connection  information.* [524bfb8] Update common.importutils from openstack-common.'Can't exec "bzr": Argument list too long at /usr/bin/debcommit line 484,  line 9904.debcommit: commit failedERROR:root:Error occurred during package creation/build: Command '['debcommit']' returned non-zero exit status 7ERROR:root:Command '['debcommit']' returned non-zero exit status 7INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/quantal-folsom-proposed /tmp/tmpbaqaHF/novamk-build-deps -i -r -t apt-get -y /tmp/tmpbaqaHF/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 4becac7cc1045304143752d8223a1b02d77c4ccd..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/quantal-folsom --forcedch -b -D quantal --newversion 2012.2+git201208151738~quantal-0ubuntu1 Automated Ubuntu testing build:dch -b -D quantal --newversion 2012.2+git201208151738~quantal-0ubuntu1 Automated Ubuntu testing build:debcommitTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['debcommit']' returned non-zero exit status 7Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['debcommit']' returned non-zero exit status 7Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_nova_trunk #408

2012-08-15 Thread openstack-testing-bot
Title: precise_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_nova_trunk/408/Project:precise_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 17:31:56 -0400Build duration:10 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesChange IPtablesManager to preserve packet:byte counts.by brian.haleyeditnova/tests/test_iptables_network.pyeditnova/tests/xenapi/stubs.pyeditnova/tests/test_libvirt.pyeditnova/network/linux_net.pyeditnova/tests/test_xenapi.pyConsole Output[...truncated 19437 lines...]Build-Time: 61Distribution: precise-folsomFail-Stage: buildInstall-Time: 41Job: nova_2012.2+git201208151738~precise-0ubuntu1.dscPackage: novaPackage-Time: 119Source-Version: 2012.2+git201208151738~precise-0ubuntu1Space: 63992Status: attemptedVersion: 2012.2+git201208151738~precise-0ubuntu1Finished at 20120815-1742Build needed 00:01:59, 63992k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208151738~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208151738~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/precise-folsom-proposed /tmp/tmpA5T7Y4/novamk-build-deps -i -r -t apt-get -y /tmp/tmpA5T7Y4/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log ca950e7ea3909110fe05e3239975b7545423670a..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201208151738~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201208151738~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2012.2+git201208151738~precise-0ubuntu1_source.changessbuild -d precise-folsom -n -A nova_2012.2+git201208151738~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208151738~precise-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208151738~precise-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_essex_horizon_stable #20

2012-08-15 Thread openstack-testing-bot
Title: precise_essex_horizon_stable
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_essex_horizon_stable/20/Project:precise_essex_horizon_stableDate of build:Wed, 15 Aug 2012 20:20:58 -0400Build duration:2 min 6 secBuild cause:Started by user adamBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesNo ChangesConsole Output[...truncated 1666 lines...]Looking for a way to retrieve the upstream tarballUsing the upstream tarball that is present in /tmp/tmpxcjAlYbzr: ERROR: An error (1) occurred running quilt: Applying patch fix-dashboard-django-wsgi.patchpatching file openstack_dashboard/wsgi/django.wsgiApplying patch fix-dashboard-manage.patchpatching file manage.pyApplying patch fix-coverage-binary-name.patchpatching file run_tests.shHunk #1 FAILED at 271.1 out of 1 hunk FAILED -- rejects in file run_tests.shPatch fix-coverage-binary-name.patch does not apply (enforce with -f)ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-e9b591b4-79df-4792-8da2-ced86deca0c0', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-e9b591b4-79df-4792-8da2-ced86deca0c0', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/horizon/precise-essex-proposed /tmp/tmpxcjAlY/horizonmk-build-deps -i -r -t apt-get -y /tmp/tmpxcjAlY/horizon/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log b0d6f54d79ff1c200b5988e2bbd4fbb0b189029f..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/horizon/precise-essex-stable --forcedch -b -D precise --newversion 2012.1.3+git201208152021~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.1.3+git201208152021~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-e9b591b4-79df-4792-8da2-ced86deca0c0', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-e9b591b4-79df-4792-8da2-ced86deca0c0', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_nova_trunk #409

2012-08-15 Thread openstack-testing-bot
Title: precise_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_nova_trunk/409/Project:precise_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 20:31:54 -0400Build duration:8 min 30 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesChanges default behavior of ec2by iccha.sethieditnova/api/ec2/cloud.pyConsole Output[...truncated 19439 lines...]Build-Time: 62Distribution: precise-folsomFail-Stage: buildInstall-Time: 43Job: nova_2012.2+git201208152035~precise-0ubuntu1.dscPackage: novaPackage-Time: 123Source-Version: 2012.2+git201208152035~precise-0ubuntu1Space: 63996Status: attemptedVersion: 2012.2+git201208152035~precise-0ubuntu1Finished at 20120815-2040Build needed 00:02:03, 63996k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208152035~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208152035~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/precise-folsom-proposed /tmp/tmpQ28w_b/novamk-build-deps -i -r -t apt-get -y /tmp/tmpQ28w_b/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log ca950e7ea3909110fe05e3239975b7545423670a..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201208152035~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201208152035~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2012.2+git201208152035~precise-0ubuntu1_source.changessbuild -d precise-folsom -n -A nova_2012.2+git201208152035~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208152035~precise-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208152035~precise-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_essex_horizon_stable #21

2012-08-15 Thread openstack-testing-bot
Title: precise_essex_horizon_stable
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_essex_horizon_stable/21/Project:precise_essex_horizon_stableDate of build:Wed, 15 Aug 2012 20:45:13 -0400Build duration:2 min 27 secBuild cause:Started by user adamBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 1908 lines...]Distribution: precise-essexFail-Stage: apt-get-updateInstall-Time: 0Job: horizon_2012.1.3+git201208152045~precise-0ubuntu1.dscPackage: horizonPackage-Time: 0Source-Version: 2012.1.3+git201208152045~precise-0ubuntu1Space: 0Status: failedVersion: 2012.1.3+git201208152045~precise-0ubuntu1Finished at 20120815-2047Build needed 00:00:00, 0k disc spaceE: apt-get update failedERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-essex', '-n', '-A', 'horizon_2012.1.3+git201208152045~precise-0ubuntu1.dsc']' returned non-zero exit status 3ERROR:root:Command '['sbuild', '-d', 'precise-essex', '-n', '-A', 'horizon_2012.1.3+git201208152045~precise-0ubuntu1.dsc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/horizon/precise-essex-proposed /tmp/tmpPjyC2c/horizonmk-build-deps -i -r -t apt-get -y /tmp/tmpPjyC2c/horizon/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log b0d6f54d79ff1c200b5988e2bbd4fbb0b189029f..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/horizon/precise-essex-stable --forcedch -b -D precise --newversion 2012.1.3+git201208152045~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.1.3+git201208152045~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC horizon_2012.1.3+git201208152045~precise-0ubuntu1_source.changessbuild -d precise-essex -n -A horizon_2012.1.3+git201208152045~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-essex', '-n', '-A', 'horizon_2012.1.3+git201208152045~precise-0ubuntu1.dsc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 140, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-essex', '-n', '-A', 'horizon_2012.1.3+git201208152045~precise-0ubuntu1.dsc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: precise_essex_horizon_stable #22

2012-08-15 Thread openstack-testing-bot
Title: precise_essex_horizon_stable
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_essex_horizon_stable/22/Project:precise_essex_horizon_stableDate of build:Wed, 15 Aug 2012 20:49:25 -0400Build duration:3 min 52 secBuild cause:Started by user adamBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesNo ChangesConsole Output[...truncated 5244 lines...]Build needed 00:01:21, 21308k disc spaceINFO:root:Uploading package to ppa:openstack-ubuntu-testing/essex-stable-testinggpg: Signature made Wed Aug 15 20:51:45 2012 EDT using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "gpg: Signature made Wed Aug 15 20:51:45 2012 EDT using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "Checking signature on .changesGood signature on /tmp/tmplit5yZ/horizon_2012.1.3+git201208152049~precise-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmplit5yZ/horizon_2012.1.3+git201208152049~precise-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading horizon_2012.1.3+git201208152049~precise-0ubuntu1.dsc: done.  Uploading horizon_2012.1.3+git201208152049~precise.orig.tar.gz: done.  Uploading horizon_2012.1.3+git201208152049~precise-0ubuntu1.debian.tar.gz: done.  Uploading horizon_2012.1.3+git201208152049~precise-0ubuntu1_source.changes: done.Successfully uploaded packages.INFO:root:Installing build artifacts into /var/lib/jenkins/www/aptExporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/precise-essex/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/precise-essex/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/h/horizon/openstack-dashboard-ubuntu-theme_2012.1.2+git201207100701~precise-0ubuntu1_all.debdeleting and forgetting pool/main/h/horizon/openstack-dashboard_2012.1.2+git201207100701~precise-0ubuntu1_all.debdeleting and forgetting pool/main/h/horizon/python-django-horizon_2012.1.2+git201207100701~precise-0ubuntu1_all.debdeleting and forgetting pool/main/h/horizon/python-django-openstack_2012.1.2+git201207100701~precise-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchPushed up to revision 99.INFO:root:Storing current commit for next build: bd4c3a2ea5513512546b259f9fa17cc352887492INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/horizon/precise-essex-proposed /tmp/tmplit5yZ/horizonmk-build-deps -i -r -t apt-get -y /tmp/tmplit5yZ/horizon/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log b0d6f54d79ff1c200b5988e2bbd4fbb0b189029f..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/horizon/precise-essex-stable --forcedch -b -D precise --newversion 2012.1.3+git201208152049~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.1.3+git201208152049~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC horizon_2012.1.3+git201208152049~precise-0ubuntu1_source.changessbuild -d precise-essex -n -A horizon_2012.1.3+git201208152049~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/essex-stable-testing horizon_2012.1.3+git201208152049~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-essex horizon_2012.1.3+git201208152049~precise-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/horizon/precise-essex-stableEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: precise_essex_keystone_stable #15

2012-08-15 Thread openstack-testing-bot
Title: precise_essex_keystone_stable
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_essex_keystone_stable/15/Project:precise_essex_keystone_stableDate of build:Wed, 15 Aug 2012 21:00:01 -0400Build duration:7 min 16 secBuild cause:Started by user adamBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesNo ChangesConsole Output[...truncated 4142 lines...]Finished at 20120815-2107Build needed 00:04:06, 14320k disc spaceINFO:root:Uploading package to ppa:openstack-ubuntu-testing/essex-stable-testinggpg: Signature made Wed Aug 15 21:02:58 2012 EDT using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) <ja...@shingle-house.org.uk>"gpg: Signature made Wed Aug 15 21:02:58 2012 EDT using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) <ja...@shingle-house.org.uk>"Checking signature on .changesGood signature on /tmp/tmphVhIjU/keystone_2012.1.3+git201208152100~precise-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmphVhIjU/keystone_2012.1.3+git201208152100~precise-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading keystone_2012.1.3+git201208152100~precise-0ubuntu1.dsc: done.  Uploading keystone_2012.1.3+git201208152100~precise.orig.tar.gz: done.  Uploading keystone_2012.1.3+git201208152100~precise-0ubuntu1.debian.tar.gz: done.  Uploading keystone_2012.1.3+git201208152100~precise-0ubuntu1_source.changes: done.Successfully uploaded packages.INFO:root:Installing build artifacts into /var/lib/jenkins/www/aptExporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/precise-essex/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/precise-essex/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/k/keystone/keystone-doc_2012.1.1+git201207310702~precise-0ubuntu1_all.debdeleting and forgetting pool/main/k/keystone/keystone_2012.1.1+git201207310702~precise-0ubuntu1_all.debdeleting and forgetting pool/main/k/keystone/python-keystone_2012.1.1+git201207310702~precise-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchPushed up to revision 128.INFO:root:Storing current commit for next build: 359c426f3009b6088efc364c035d104b089eb37aINFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/keystone/precise-essex-proposed /tmp/tmphVhIjU/keystonemk-build-deps -i -r -t apt-get -y /tmp/tmphVhIjU/keystone/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 5373601bbdda10f879c08af1698852142b75f8d5..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/keystone/precise-essex-stable --forcedch -b -D precise --newversion 2012.1.3+git201208152100~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.1.3+git201208152100~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC keystone_2012.1.3+git201208152100~precise-0ubuntu1_source.changessbuild -d precise-essex -n -A keystone_2012.1.3+git201208152100~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/essex-stable-testing keystone_2012.1.3+git201208152100~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-essex keystone_2012.1.3+git201208152100~precise-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/keystone/precise-essex-stableEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: precise_essex_nova_stable #37

2012-08-15 Thread openstack-testing-bot
Title: precise_essex_nova_stable
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_essex_nova_stable/37/Project:precise_essex_nova_stableDate of build:Wed, 15 Aug 2012 20:59:59 -0400Build duration:18 minBuild cause:Started by user adamBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesNo ChangesConsole Output[...truncated 15106 lines...]deleting and forgetting pool/main/n/nova/nova-api_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-cert_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-common_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-kvm_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-lxc_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-qemu_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-uml_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-xcp_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-xen_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-console_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-consoleauth_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-doc_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-network_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-objectstore_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-scheduler_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-vncproxy_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-volume_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xcp-network_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xcp-plugins_2012.1.2+git201208100235~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/python-nova_2012.1.2+git201208100235~precise-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchPermission denied (publickey).ConnectionReset reading response for 'BzrDir.open_2.1', retryingPushed up to revision 388.INFO:root:Storing current commit for next build: 63dd6be26ddcc919aff5e86ab962f95b92c45c02INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/precise-essex-proposed /tmp/tmpaW5GVH/novamk-build-deps -i -r -t apt-get -y /tmp/tmpaW5GVH/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 6227bc9a1b2534874aa19024ad7d660c2b75197d..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/precise-essex-stable --forcedch -b -D precise --newversion 2012.1.3+git201208152103~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.1.3+git201208152103~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2012.1.3+git201208152103~precise-0ubuntu1_source.changessbuild -d precise-essex -n -A nova_2012.1.3+git201208152103~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/essex-stable-testing nova_2012.1.3+git201208152103~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-essex nova_2012.1.3+git201208152103~precise-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/nova/precise-essex-stable+ [ ! 0 ]+ jenkins-cli build precise_essex_deployEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: quantal_folsom_nova_trunk #405

2012-08-15 Thread openstack-testing-bot
Title: quantal_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_nova_trunk/405/Project:quantal_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 21:11:39 -0400Build duration:6 min 26 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesCollect instance capabilities from compute nodesby jfehligeditnova/virt/libvirt/config.pyeditnova/virt/libvirt/driver.pyeditnova/tests/test_libvirt.pyMake ComputeFilter verify compute-related instance propertiesby jfehligeditnova/tests/scheduler/test_host_filters.pyeditnova/scheduler/filters/compute_filter.pyConsole Output[...truncated 5098 lines...]* Automated Ubuntu testing build:* [c5a9c75] Ensure that the dom0 we're connected to is the right one* [2dcd825] Pass context to notification drivers when we can.* [b841b6a] Fix innodb tests again* [d14ac4b] Adding 'host' info to volume-compute connection  information.* [ac21815] Allow blank adminPass on server create* [03a331c] Log instance consistently.* [2511f01] Use additional task states during resize* Automated Ubuntu testing build:* [29dc47b] Use save_and_reraise_exception() from common.* [b841b6a] Fix innodb tests again* [ca2bb06] Remove unused images* [d14ac4b] Adding 'host' info to volume-compute connection  information.* [524bfb8] Update common.importutils from openstack-common.'Can't exec "bzr": Argument list too long at /usr/bin/debcommit line 484,  line 9925.debcommit: commit failedERROR:root:Error occurred during package creation/build: Command '['debcommit']' returned non-zero exit status 7ERROR:root:Command '['debcommit']' returned non-zero exit status 7INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/quantal-folsom-proposed /tmp/tmpN0Dn2z/novamk-build-deps -i -r -t apt-get -y /tmp/tmpN0Dn2z/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 4becac7cc1045304143752d8223a1b02d77c4ccd..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/quantal-folsom --forcedch -b -D quantal --newversion 2012.2+git201208152115~quantal-0ubuntu1 Automated Ubuntu testing build:dch -b -D quantal --newversion 2012.2+git201208152115~quantal-0ubuntu1 Automated Ubuntu testing build:debcommitTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['debcommit']' returned non-zero exit status 7Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['debcommit']' returned non-zero exit status 7Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: quantal_folsom_nova_trunk #406

2012-08-15 Thread openstack-testing-bot
Title: quantal_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_nova_trunk/406/Project:quantal_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 21:37:07 -0400Build duration:5 min 27 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesUpdate disk config to check for server in req.by dprinceeditnova/api/openstack/compute/contrib/scheduler_hints.pyeditnova/tests/api/openstack/compute/test_servers.pyeditnova/tests/api/openstack/compute/contrib/test_scheduler_hints.pyeditnova/api/openstack/compute/contrib/disk_config.pyAllow nova to guess device if not passed to attachby vishvanandaeditnova/block_device.pyeditnova/compute/manager.pyeditnova/tests/compute/test_rpcapi.pyeditnova/tests/test_metadata.pyeditnova/compute/rpcapi.pyeditnova/compute/utils.pyeditnova/api/metadata/base.pyeditnova/compute/api.pyeditnova/db/api.pyeditnova/db/sqlalchemy/api.pyeditnova/exception.pyeditnova/tests/compute/test_compute_utils.pyeditnova/api/openstack/compute/contrib/volumes.pyConsole Output[...truncated 5108 lines...]* Automated Ubuntu testing build:* [c5a9c75] Ensure that the dom0 we're connected to is the right one* [2dcd825] Pass context to notification drivers when we can.* [b841b6a] Fix innodb tests again* [d14ac4b] Adding 'host' info to volume-compute connection  information.* [ac21815] Allow blank adminPass on server create* [03a331c] Log instance consistently.* [2511f01] Use additional task states during resize* Automated Ubuntu testing build:* [29dc47b] Use save_and_reraise_exception() from common.* [b841b6a] Fix innodb tests again* [ca2bb06] Remove unused images* [d14ac4b] Adding 'host' info to volume-compute connection  information.* [524bfb8] Update common.importutils from openstack-common.'Can't exec "bzr": Argument list too long at /usr/bin/debcommit line 484,  line 9939.debcommit: commit failedERROR:root:Error occurred during package creation/build: Command '['debcommit']' returned non-zero exit status 7ERROR:root:Command '['debcommit']' returned non-zero exit status 7INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/quantal-folsom-proposed /tmp/tmpSRbuPm/novamk-build-deps -i -r -t apt-get -y /tmp/tmpSRbuPm/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 4becac7cc1045304143752d8223a1b02d77c4ccd..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/quantal-folsom --forcedch -b -D quantal --newversion 2012.2+git201208152140~quantal-0ubuntu1 Automated Ubuntu testing build:dch -b -D quantal --newversion 2012.2+git201208152140~quantal-0ubuntu1 Automated Ubuntu testing build:debcommitTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['debcommit']' returned non-zero exit status 7Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['debcommit']' returned non-zero exit status 7Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: quantal_folsom_nova_trunk #407

2012-08-15 Thread openstack-testing-bot
Title: quantal_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/quantal_folsom_nova_trunk/407/Project:quantal_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 22:07:29 -0400Build duration:6 min 37 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd get_key_pair to compute API.by dprinceeditnova/compute/api.pyeditnova/tests/compute/test_compute.pyConsole Output[...truncated 5114 lines...]* Automated Ubuntu testing build:* [c5a9c75] Ensure that the dom0 we're connected to is the right one* [2dcd825] Pass context to notification drivers when we can.* [b841b6a] Fix innodb tests again* [d14ac4b] Adding 'host' info to volume-compute connection  information.* [ac21815] Allow blank adminPass on server create* [03a331c] Log instance consistently.* [2511f01] Use additional task states during resize* Automated Ubuntu testing build:* [29dc47b] Use save_and_reraise_exception() from common.* [b841b6a] Fix innodb tests again* [ca2bb06] Remove unused images* [d14ac4b] Adding 'host' info to volume-compute connection  information.* [524bfb8] Update common.importutils from openstack-common.'Can't exec "bzr": Argument list too long at /usr/bin/debcommit line 484,  line 9946.debcommit: commit failedERROR:root:Error occurred during package creation/build: Command '['debcommit']' returned non-zero exit status 7ERROR:root:Command '['debcommit']' returned non-zero exit status 7INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/quantal-folsom-proposed /tmp/tmpRFy5yv/novamk-build-deps -i -r -t apt-get -y /tmp/tmpRFy5yv/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 4becac7cc1045304143752d8223a1b02d77c4ccd..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/quantal-folsom --forcedch -b -D quantal --newversion 2012.2+git201208152211~quantal-0ubuntu1 Automated Ubuntu testing build:dch -b -D quantal --newversion 2012.2+git201208152211~quantal-0ubuntu1 Automated Ubuntu testing build:debcommitTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['debcommit']' returned non-zero exit status 7Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['debcommit']' returned non-zero exit status 7Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_nova_trunk #411

2012-08-15 Thread openstack-testing-bot
Title: precise_folsom_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_nova_trunk/411/Project:precise_folsom_nova_trunkDate of build:Wed, 15 Aug 2012 22:07:28 -0400Build duration:9 min 16 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd get_key_pair to compute API.by dprinceeditnova/compute/api.pyeditnova/tests/compute/test_compute.pyUpdate disk config to check for server in req.by dprinceeditnova/api/openstack/compute/contrib/scheduler_hints.pyeditnova/tests/api/openstack/compute/test_servers.pyeditnova/api/openstack/compute/contrib/disk_config.pyeditnova/tests/api/openstack/compute/contrib/test_scheduler_hints.pyConsole Output[...truncated 19448 lines...]Build-Time: 62Distribution: precise-folsomFail-Stage: buildInstall-Time: 43Job: nova_2012.2+git201208152212~precise-0ubuntu1.dscPackage: novaPackage-Time: 122Source-Version: 2012.2+git201208152212~precise-0ubuntu1Space: 64080Status: attemptedVersion: 2012.2+git201208152212~precise-0ubuntu1Finished at 20120815-2216Build needed 00:02:02, 64080k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208152212~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208152212~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/nova/precise-folsom-proposed /tmp/tmpprloOn/novamk-build-deps -i -r -t apt-get -y /tmp/tmpprloOn/nova/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log ca950e7ea3909110fe05e3239975b7545423670a..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/nova/precise-folsom --forcedch -b -D precise --newversion 2012.2+git201208152212~precise-0ubuntu1 Automated Ubuntu testing build:dch -b -D precise --newversion 2012.2+git201208152212~precise-0ubuntu1 Automated Ubuntu testing build:debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2012.2+git201208152212~precise-0ubuntu1_source.changessbuild -d precise-folsom -n -A nova_2012.2+git201208152212~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208152212~precise-0ubuntu1.dsc']' returned non-zero exit status 2Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.getcwdu(), sys.argv[0]))OSError: [Errno 2] No such file or directoryOriginal exception was:Traceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-folsom', '-n', '-A', 'nova_2012.2+git201208152212~precise-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp