Re: [Openstack] Cinder problems with usage and caching ?

2013-06-13 Thread Heiko Krämer
Hey Ollie, yeah thx, I've found yesterday an existing bug report. https://bugs.launchpad.net/cinder/+bug/1174193 Thx and greetings Heiko On 12.06.2013 17:05, Ollie Leahy wrote: This looks like a bug, so you could raise a bug on cinder at https://bugs.launchpad.net/cinder/+filebug When you

Re: [Openstack] Cinder problems with usage and caching ?

2013-06-13 Thread Ollie Leahy
Thanks for taking the trouble to do that Heiko, as you can see that's been open a while and we're having trouble reproducing the problem, any information you can supply about your situation would be welcome. eg, errors in log files or the contents of your database as Duncan suggested in that

[Openstack] Connecting to Keystone from a different port using HAproxy

2013-06-13 Thread Samuel Winchenbach
Hi All, I am attempting to set up a high availability openstack cluster. Currently, using pacemaker, I create a Virtual IP for all the highly available service, launch haproxy to proxy all the requests and clone keystone to all the nodes. The idea being that the requests come into haproxy and

Re: [Openstack] Connecting to Keystone from a different port using HAproxy

2013-06-13 Thread Samuel Winchenbach
I may have found a solution to my problem, but I am not sure it will help you much. I created an entry in hosts that named my internal ip local-internal and then I bound keystone to that ip. Next I configured the pacemaker resource agent to check local-internal which will, of course, be

[Openstack] Leftover /tmp/openstack-disk-mount-tmp files and Windows 7 instances

2013-06-13 Thread Curtis
Hi, I'm having an issue in OpenStack Essex on Ubuntu 12.04 using nova-compute version 2012.1.3+stable-20120827-4d2a4afe-0ubuntu1.4 where there are many nbd disk mounts left over from booting Windows 7 virtual machines. Also, (I think) once the instance is deleted the nbd process holds onto the

[Openstack] [OSSA 2013-015] Authentication bypass when using LDAP backend (CVE-2013-2157)

2013-06-13 Thread Thierry Carrez
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 OpenStack Security Advisory: 2013-015 CVE: CVE-2013-2157 Date: June 13, 2013 Title: Authentication bypass when using LDAP backend Reporter: Jose Castro Leon (CERN) Products: Keystone Affects: Folsom, Grizzly Description: Jose Castro Leon from CERN

[Openstack] [OSSA 2013-016] Unchecked user input in Swift XML responses (CVE-2013-2161)

2013-06-13 Thread Jeremy Stanley
OpenStack Security Advisory: 2013-016 CVE: CVE-2013-2161 Date: June 13, 2013 Title: Unchecked user input in Swift XML responses Reporter: Alex Gaynor (Rackspace) Products: Swift Affects: All versions Description: Alex Gaynor from Rackspace reported a vulnerability in XML handling within Swift

[Openstack] Ceilometer- All meters are not getting updated

2013-06-13 Thread johnu
Hi Everyone, When I am running ceilometer, only some of the meters are getting updated.(When I see ceilometer meter-list , I could see only cpu_util, image, instance). What can be the reason that the other meters are not getting updated.?. Thanks, Johnu

[Openstack] Horizon troubleshooting

2013-06-13 Thread Igor Laskovy
Hello all! Have installation of Grizzly and during log in to Horizon get Something went wrong! page after sent credentials. Apache log helpless. In other logs (system + other nova services) everything alright. So how I can determine what wrong with installation? I found that I can turn on

Re: [Openstack] OpenStack API versions and release content

2013-06-13 Thread Dolph Mathews
On Tue, Jun 11, 2013 at 4:46 PM, Farhan Patwa farhan.pa...@utsa.edu wrote: Hi all, I am just trying to understand the motivation behind creations API versions and how that ties in to a release content. As per listed documentation (

[Openstack] Can I run qemu-kvm in an OpenStack Instance

2013-06-13 Thread Daniel Ellison
Hi all, I want to use veewee to create custom images for use in OpenStack. The catch here is that I want to run veewee in an OpenStack VM. I almost have everything working. The only catch is that qemu-kvm won't run. I've done lots of research and I believe I need what's called nested KVM. I

Re: [Openstack] Can I run qemu-kvm in an OpenStack Instance

2013-06-13 Thread Daniel Ellison
On Jun 13, 2013, at 4:36 PM, Daniel Ellison dan...@syrinx.net wrote: libvirtd is already running on the guest. One more data point: the guest does have the vmx capability enabled: cpu match='exact' modelPenryn/model vendorIntel/vendor feature policy='require' name='hypervisor'/ feature

Re: [Openstack] Can I run qemu-kvm in an OpenStack Instance

2013-06-13 Thread laclasse
What is the guest OS? It seems the error Module kvm not found points to the missing kernel module rather than it not loading. Is the guest kernel 2.6.23? Can you find a kvm.ko and kvm-intel.ko on the guest file system? I'd recommend looking at this for RHEL/CentOS/Fedora:

Re: [Openstack] [Openstack-operators] Horizon troubleshooting

2013-06-13 Thread Jesse Pretorius
On 13 June 2013 20:54, Igor Laskovy igor.lask...@gmail.com wrote: So how I can determine what wrong with installation? I found that I can turn on verbose logging for django Horizon app, but how? Debug logs are your friend. Start with setting DEBUG = True in horizon's local_settings.py file.

[Openstack] nova agent-* subcommands

2013-06-13 Thread Christophe
Hi All agent-createCreates a new agent build. agent-deleteDeletes an existing agent build. agent-list List all builds agent-modifyModify an existing agent build. What is the purpose of these commands? Which documentation should I read to learn

Re: [Openstack] Can I run qemu-kvm in an OpenStack Instance

2013-06-13 Thread Daniel Ellison
On Jun 13, 2013, at 5:05 PM, laclasse lacla...@gmail.com wrote: What is the guest OS? It seems the error Module kvm not found points to the missing kernel module rather than it not loading. Is the guest kernel 2.6.23? Can you find a kvm.ko and kvm-intel.ko on the guest file system? I

Re: [Openstack] Can I run qemu-kvm in an OpenStack Instance

2013-06-13 Thread Parrott, Robert
No. You can't use KVM in a guest since it requires hardware virtualization. Instead you need to use qemu in emulation mode. Refer to the devstack code for how to set this up, since devatack will work in Amazon EC2. On Thu, Jun 13, 2013 at 4:54 PM, Daniel Ellison dan...@syrinx.net wrote: On

Re: [Openstack] Can I run qemu-kvm in an OpenStack Instance

2013-06-13 Thread Daniel Ellison
On Jun 13, 2013, at 5:19 PM, Parrott, Robert parr...@g.harvard.edu wrote: No. You can't use KVM in a guest since it requires hardware virtualization. Instead you need to use qemu in emulation mode. Refer to the devstack code for how to set this up, since devatack will work in Amazon EC2. I

Re: [Openstack] Can I run qemu-kvm in an OpenStack Instance

2013-06-13 Thread Daniel Ellison
On Jun 13, 2013, at 5:24 PM, David Stearns dstea...@gnip.com wrote: There's no reason using nested KVM shouldn't work so long as the hardware supports it. Do you know what kind of hardware support is required? Obviously my host already supports CPU virtualization extensions. :) Looks

Re: [Openstack] Can I run qemu-kvm in an OpenStack Instance

2013-06-13 Thread Robert Collins
On 14 June 2013 09:18, Daniel Ellison dan...@syrinx.net wrote: On Jun 13, 2013, at 5:05 PM, laclasse lacla...@gmail.com wrote: What is the guest OS? It seems the error Module kvm not found points to the missing kernel module rather than it not loading. Is the guest kernel 2.6.23? Can you

Re: [Openstack] Can I run qemu-kvm in an OpenStack Instance

2013-06-13 Thread Christopher Armstrong
On Thu, Jun 13, 2013 at 4:19 PM, Parrott, Robert parr...@g.harvard.eduwrote: No. You can't use KVM in a guest since it requires hardware virtualization. Instead you need to use qemu in emulation mode. Refer to the devstack code for how to set this up, since devatack will work in Amazon EC2.

Re: [Openstack] Can I run qemu-kvm in an OpenStack Instance

2013-06-13 Thread Daniel Ellison
On Jun 13, 2013, at 5:34 PM, Robert Collins robe...@robertcollins.net wrote: install linux-image-generic, it will bring in linux-image-extra-$version-generic which has kvm. That did it! I'm now creating a CentOS KVM image in an Ubuntu OpenStack VM. I'll wait until it finishes before

Re: [Openstack] Can I run qemu-kvm in an OpenStack Instance

2013-06-13 Thread Joseph Quinn
If you really want to go crazy, why not run OpenStack in an OpenStack instance to launch your qemu machines: http://devstack.org/guides/single-vm.html - Joseph From: Openstack [openstack-bounces+joseph.quinn=rackspace@lists.launchpad.net] on behalf

[Openstack] Another basic Swift question

2013-06-13 Thread Mark Brown
When a new server is added to an existing cluster, and I now update the ring with the new device, but at the same time, I do NOT rebalance, will things work correctly?  I am assuming if I don't rebalance, but I do update the ring, the ring has the new partition scheme with the new device

[Openstack] Security Group of Quantum ovs plugin (Folsom) is not working

2013-06-13 Thread Chandler Li
Hello, I'm trying to use security group of Quantum ovs plugin(Folsom) in CentOS 6.3 (2012.2.3-1.el6@epel). Everything looks good, except security group, and there are no error message in /var/log/nova/compute.log file. After I created VM, I can see the bridges and interfaces have been created

Re: [Openstack] Another basic Swift question

2013-06-13 Thread Kuo Hugo
Hi Mark, Well, the ring without rebalance will not effect anything. With a update, there're no partitions been assigned to the new devices.Result of partition numbers of a new device will be 0. Which means no any object will be calculated for these new devices. In the case of adding a new server

Re: [Openstack] Can I run qemu-kvm in an OpenStack Instance

2013-06-13 Thread laclasse
Yes, the Ubuntu cloud image is made to run as a guest atop an hypervisor and it makes sense to optimize it by removing the unlikely needed modules that usually require hardware to run (nested virt is not yet common). Scott Moser may confirm/infirm. Maybe you can try installing the 'normal' kernel

[Openstack-qa-team] Script to prepare the stack for full tempest run.

2013-06-13 Thread Jaroslav Henner
Hi, We wish to create some tool for automated preparation of stack for full tempest run. We need it to be able to work with deployment that has been prepared by Packstack [1]. Packstack can give as an output some answer file, which is actually an ini file. We can parse that file, take some

[Openstack-ubuntu-testing-notifications] Build Failure: precise_havana_cinder_trunk #147

2013-06-13 Thread openstack-testing-bot
at 20130613-0207Build needed 00:03:20, 27120k disc spaceERROR:root:Error occurred during

[Openstack-ubuntu-testing-notifications] Build Still Failing: test_tempest_smoke #146

2013-06-13 Thread openstack-testing-bot
Title: test_tempest_smoke General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/test_tempest_smoke/146/Project:test_tempest_smokeDate of build:Thu, 13 Jun 2013 02:47:10 -0400Build duration:45 secBuild cause:Started by command line by jenkinsBuilt on:masterHealth

[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_python-swiftclient_stable #39

2013-06-13 Thread openstack-testing-bot
Title: raring_grizzly_python-swiftclient_stable General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_python-swiftclient_stable/39/Project:raring_grizzly_python-swiftclient_stableDate of build:Thu, 13 Jun 2013 04:01:16 -0400Build duration:4 min 6 secBuild

[Openstack-ubuntu-testing-notifications] Build Still Failing: test_tempest_smoke #147

2013-06-13 Thread openstack-testing-bot
Title: test_tempest_smoke General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/test_tempest_smoke/147/Project:test_tempest_smokeDate of build:Thu, 13 Jun 2013 04:08:56 -0400Build duration:52 secBuild cause:Started by command line by jenkinsBuilt on:masterHealth

[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_python-keystoneclient_stable #115

2013-06-13 Thread openstack-testing-bot
text/html; charset=UTF-8: Unrecognized -- 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 :

[Openstack-ubuntu-testing-notifications] Build Failure: saucy_havana_horizon_trunk #65

2013-06-13 Thread openstack-testing-bot
at 20130613-0634Build needed 00:00:00, 0k disc spaceE

[Openstack-ubuntu-testing-notifications] Build Still Failing: test_tempest_smoke #148

2013-06-13 Thread openstack-testing-bot
Title: test_tempest_smoke General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/test_tempest_smoke/148/Project:test_tempest_smokeDate of build:Thu, 13 Jun 2013 08:39:47 -0400Build duration:48 secBuild cause:Started by command line by jenkinsBuilt on:masterHealth

[Openstack-ubuntu-testing-notifications] Build Fixed: saucy_havana_horizon_trunk #66

2013-06-13 Thread openstack-testing-bot
Title: saucy_havana_horizon_trunk General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_horizon_trunk/66/Project:saucy_havana_horizon_trunkDate of build:Thu, 13 Jun 2013 09:01:17 -0400Build duration:4 min 55 secBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: test_tempest_smoke #149

2013-06-13 Thread openstack-testing-bot
Title: test_tempest_smoke General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/test_tempest_smoke/149/Project:test_tempest_smokeDate of build:Thu, 13 Jun 2013 09:09:25 -0400Build duration:30 secBuild cause:Started by command line by jenkinsBuilt on:masterHealth

[Openstack-ubuntu-testing-notifications] Build Fixed: saucy_havana_keystone_trunk #65

2013-06-13 Thread openstack-testing-bot
at 20130613

[Openstack-ubuntu-testing-notifications] Build Fixed: precise_havana_python-quantumclient_trunk #31

2013-06-13 Thread openstack-testing-bot
at 20130613

[Openstack-ubuntu-testing-notifications] Build Still Failing: test_tempest_smoke #150

2013-06-13 Thread openstack-testing-bot
Title: test_tempest_smoke General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/test_tempest_smoke/150/Project:test_tempest_smokeDate of build:Thu, 13 Jun 2013 11:41:05 -0400Build duration:41 secBuild cause:Started by command line by jenkinsBuilt on:masterHealth

[Openstack-ubuntu-testing-notifications] Build Fixed: precise_havana_cinder_trunk #148

2013-06-13 Thread openstack-testing-bot
-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesFix some unittest cases failed on osxby haomaieditcinder/tests/test_scality.pyConsole Output[...truncated 6759 lines...]Finished at 20130613-1336Build needed 00:02:53, 53104k disc

[Openstack-ubuntu-testing-notifications] Build Failure: saucy_havana_quantum_trunk #138

2013-06-13 Thread openstack-testing-bot
Title: saucy_havana_quantum_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_quantum_trunk/138/Project:saucy_havana_quantum_trunkDate of build:Thu, 13 Jun 2013 13:38:05 -0400Build duration:6 min 31 secBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: test_tempest_smoke #151

2013-06-13 Thread openstack-testing-bot
Title: test_tempest_smoke General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/test_tempest_smoke/151/Project:test_tempest_smokeDate of build:Thu, 13 Jun 2013 15:11:35 -0400Build duration:48 secBuild cause:Started by command line by jenkinsBuilt on:masterHealth

[Openstack-ubuntu-testing-notifications] Build Fixed: saucy_havana_quantum_trunk #139

2013-06-13 Thread openstack-testing-bot
Title: saucy_havana_quantum_trunk General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_quantum_trunk/139/Project:saucy_havana_quantum_trunkDate of build:Thu, 13 Jun 2013 15:01:17 -0400Build duration:13 minBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build Still Failing: test_tempest_smoke #152

2013-06-13 Thread openstack-testing-bot
Title: test_tempest_smoke General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/test_tempest_smoke/152/Project:test_tempest_smokeDate of build:Thu, 13 Jun 2013 16:12:18 -0400Build duration:44 secBuild cause:Started by command line by jenkinsBuilt on:masterHealth

[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_python-cinderclient_stable #58

2013-06-13 Thread openstack-testing-bot
text/html; charset=UTF-8: Unrecognized -- 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 :

[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_python-ceilometerclient_stable #6

2013-06-13 Thread openstack-testing-bot
text/html; charset=UTF-8: Unrecognized -- 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 :

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #19257

2013-06-13 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/19257/ -- Started by timer Building remotely on pkg-builder in workspace http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/ [cloud-archive_folsom_version-drift] $ /bin/bash

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #19258

2013-06-13 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/19258/ -- Started by timer Building remotely on pkg-builder in workspace http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/ [cloud-archive_folsom_version-drift] $ /bin/bash

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #19259

2013-06-13 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/19259/ -- Started by timer Building remotely on pkg-builder in workspace http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/ [cloud-archive_folsom_version-drift] $ /bin/bash

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #19260

2013-06-13 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/19260/ -- Started by timer Building remotely on pkg-builder in workspace http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/ [cloud-archive_folsom_version-drift] $ /bin/bash

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #19261

2013-06-13 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/19261/ -- Started by timer Building remotely on pkg-builder in workspace http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/ [cloud-archive_folsom_version-drift] $ /bin/bash

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #19262

2013-06-13 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/19262/ -- Started by timer Building remotely on pkg-builder in workspace http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/ [cloud-archive_folsom_version-drift] $ /bin/bash

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_grizzly_version-drift #55

2013-06-13 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_grizzly_version-drift/55/ -- Started by timer Building remotely on pkg-builder in workspace http://10.189.74.7:8080/job/cloud-archive_grizzly_version-drift/ws/ [cloud-archive_grizzly_version-drift] $ /bin/bash

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #19263

2013-06-13 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/19263/ -- Started by timer Building remotely on pkg-builder in workspace http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/ [cloud-archive_folsom_version-drift] $ /bin/bash

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #19264

2013-06-13 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/19264/ -- Started by timer Building remotely on pkg-builder in workspace http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/ [cloud-archive_folsom_version-drift] $ /bin/bash

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #19265

2013-06-13 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/19265/ -- Started by timer Building remotely on pkg-builder in workspace http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/ [cloud-archive_folsom_version-drift] $ /bin/bash

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #19266

2013-06-13 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/19266/ -- Started by timer Building remotely on pkg-builder in workspace http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/ [cloud-archive_folsom_version-drift] $ /bin/bash

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #19267

2013-06-13 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/19267/ -- Started by timer Building remotely on pkg-builder in workspace http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/ [cloud-archive_folsom_version-drift] $ /bin/bash

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #19268

2013-06-13 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/19268/ -- Started by timer Building remotely on pkg-builder in workspace http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/ [cloud-archive_folsom_version-drift] $ /bin/bash

[Openstack-ubuntu-testing-notifications] Build Failure: precise_havana_nova_trunk #361

2013-06-13 Thread openstack-testing-bot
Title: precise_havana_nova_trunk General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/361/Project:precise_havana_nova_trunkDate of build:Fri, 14 Jun 2013 01:31:21 -0400Build duration:9 min 28 secBuild cause:Started by an SCM changeBuilt

[Openstack-ubuntu-testing-notifications] Build failed in Jenkins: cloud-archive_folsom_version-drift #19269

2013-06-13 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/19269/ -- Started by timer Building remotely on pkg-builder in workspace http://10.189.74.7:8080/job/cloud-archive_folsom_version-drift/ws/ [cloud-archive_folsom_version-drift] $ /bin/bash