Re: [Openstack] HTTP headers are incorrectly treated case sensitive by jClouds causing OpenStack x-storage-url to fail

2013-06-28 Thread Jamie Lennox
On Thu, 2013-06-27 at 17:00 -0700, Ali, Saqib wrote:
 We are using the jclouds library for connection to OpenStack Swift
 (grizzly) cloud storage, and are running into the following
 issue: https://issues.apache.org/jira/browse/JCLOUDS-155
 
 We are using Apache web front for the swift proxy as defined
 here:http://docs.openstack.org/developer/swift/apache_deployment_guide.html
 
 Essentially the issue is that the Apache web front (using mod-wsgi)
 returns a lower case header (x-storage-url), whereas jClouds is
 expecting it to be X-Storage-URL (case-sensitive).
 
 So the jClouds is being case-sensitive. When it shouldn't be. 
 
 Is there anything we can do to work around this, while someone from
 the jClouds community fixes this issue?
 
 
 This is a rather urgent issue. Any help will be highly appreciated.

I have a middleware i use in testing which simply renames headers to do
ProxyPass-ing env variables through apache. You'll need to modify it
somewhat to get what you are looking for, but as a stop-gap you can use
this: 



 Thanks!
 
 Saqib
 
 
 ___
 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] HTTP headers are incorrectly treated case sensitive by jClouds causing OpenStack x-storage-url to fail

2013-06-28 Thread Jamie Lennox
On Fri, 2013-06-28 at 16:39 +1000, Jamie Lennox wrote:
 On Thu, 2013-06-27 at 17:00 -0700, Ali, Saqib wrote:
  We are using the jclouds library for connection to OpenStack Swift
  (grizzly) cloud storage, and are running into the following
  issue: https://issues.apache.org/jira/browse/JCLOUDS-155
  
  We are using Apache web front for the swift proxy as defined
  here:http://docs.openstack.org/developer/swift/apache_deployment_guide.html
  
  Essentially the issue is that the Apache web front (using mod-wsgi)
  returns a lower case header (x-storage-url), whereas jClouds is
  expecting it to be X-Storage-URL (case-sensitive).
  
  So the jClouds is being case-sensitive. When it shouldn't be. 
  
  Is there anything we can do to work around this, while someone from
  the jClouds community fixes this issue?
  
  
  This is a rather urgent issue. Any help will be highly appreciated.
 
 I have a middleware i use in testing which simply renames headers to do
 ProxyPass-ing env variables through apache. You'll need to modify it
 somewhat to get what you are looking for, but as a stop-gap you can use
 this: 

proxy_env.py

import logging  

LOG = logging.getLogger(__name__)   


class ProxyEnv(object): 
Middleware that rewrites env headers 

Particularly when using apache to forward requests you may have to  
put environment variables into HTTP headers. This middleware is a simple
   
way of putting select variables back to hide the proxying from the app. 
   
 
def __init__(self, app, global_conf, local_conf):   
self.app = app  
self.local_conf = local_conf
self.global_conf = global_conf  

def __call__(self, env, start_response):
# this deliberately sets the new header to None if the old doesn't  
   
# exist to prevent passing through unexpected headers.  
for old, new in self.local_conf.iteritems():
env[new] = env.pop(old, None)   

return self.app(env, start_response)


def filter_factory(global_conf, **local_conf):  
Returns a WSGI filter app for use with paste.deploy.  

def proxy_filter(app):  
return ProxyEnv(app, global_conf, local_conf)   
return proxy_filter 


configuration: 

[filter:proxyenv]   
  paste.filter_factory = keystoneclient.middleware.proxy_env:filter_factory 
  
  HTTP_X_FORWARDED_REMOTE_USER = REMOTE_USER
  
  HTTP_X_FORWARDED_AUTH_TYPE = AUTH_TYPE 


 
 
  Thanks!
  
  Saqib
  
  
  ___
  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




___
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] CLI command to figure out security-group's association to particular tenant/user

2013-06-28 Thread Aaron Rosen
On Thu, Jun 27, 2013 at 10:51 PM, Rahul Sharma rahulsharma...@gmail.comwrote:

 Hi Aaron,

 Thanks for the CLI. I have a query related to that. I have a multinode
 openstack-deployment. To allow all the ports of VM accessible from outside,
 I need to add a rule *TCP port-range 1-65535 Allow* using Horizon
 dashboard. Now this rule is pushed to Quantum database as well as Nova
 database.


This is only stored in the quantum database. When querying nova for this
information it will query quantum.


 root@controller1:~# quantum security-group-rule-list --
 --tenant-id=40a7cd193a794161bfefd62364e64d03

 +--++---+--+--+--+
 | id   | security_group | direction |
 protocol | remote_ip_prefix | remote_group |

 +--++---+--+--+--+
 | 24cd1f88-8b50-45da-822c-e932178aeffd | default| egress
 |  |  |  |
 | 54e72726-61d5-4253-a92f-47a84d0ec882 | default| ingress
 |  |  | default  |
 | 977c7aff-9649-4037-af03-086d5db4955a | default| egress
 |  |  |  |
 *| d3e0d85c-b9c7-4fc3-9009-d14ed085876a | default| ingress   |
 tcp  | 0.0.0.0/0|  |*
 | e0887d63-bee2-4848-acce-c193aa03ef02 | default| ingress
 |  |  | default  |

 +--++---+--+--+--+

 root@controller1:~# nova --os-username test --os-password test
 --os-tenant-name test secgroup-list-rules default
 +-+---+-+---+--+
 | IP Protocol | From Port | To Port | IP Range  | Source Group |
 +-+---+-+---+--+
 | | -1| -1  |   | default  |
 | | -1| -1  |   | default  |
 *| tcp | 1 | 65535   | 0.0.0.0/0 |  |*
 +-+---+-+---+--+

 How can I do the same using CLI? Is there any single command which will do
 this task or I need to manually do this from UI? I tried adding rule using
 nova and quantum commands but its giving me error in taking parameters like
 0.0.0.0/0 or due to something else which is not evident from the error
 message. I am using Grizzly release.


quantum security-group-rule-create --protocol tcp --ethertype IPv4
--port-range-min 1 --port-range-max 65535  --remote-ip-prefix 0.0.0.0/0
 default

or

nova secgroup-add-rule default tcp 1 65355 0.0.0.0/0


 Thanks and Regards
 Rahul Sharma


 On Thu, Jun 27, 2013 at 10:25 PM, Aaron Rosen aro...@nicira.com wrote:

 Hi Rahul,

 The issue is that you are running as an admin user so it shows all the
 security groups for every tenant. If you want to list the security groups
 for just one particular tenant you can do this:


  quantum security-group-list  -- --tenant-id=tenant_id


 Aaron



 On Thu, Jun 27, 2013 at 5:54 AM, Rahul Sharma 
 rahulsharma...@gmail.comwrote:

 Hi All,

 I have a query regarding the security-groups. Whenever I create a new
 tenant, a default security-group is created for that tenant. Now I want to
 find out which security-group is for which tenant? If I run quantum
 security-group-list, then it shows me the security-groups is below format:-
 root@controller1:~# quantum security-group-list

 +--+-+-+
 | id   | name|
 description |

 +--+-+-+
 | 429f8e9e-edfc-4173-b599-9d91d9f7cb7d | default |
 default |
 | 47cbba23-6a73-44dc-b7c4-46794ed7aa5a | default |
 default |
 | 5ea93a09-6d96-4688-8005-99f8de4f20d7 | default |
 default |
 | 81cb819c-ffc2-4c26-b390-8e24b11f3443 | default |
 default |
 | 83778bc4-bbd2-4e02-9131-c5d4cf8a9e9b | default |
 default |
 | 9ca14384-00f0-4597-acd4-00bdec10ab5c | default |
 default |
 | a0e42478-ff76-4513-a698-7d7b0450a878 | default |
 default |
 | da2cb126-520e-475b-81f3-5d0d2f05 | default |
 default |

 +--+-+-+

 How can I figure out the default security-group to a particular
 tenant/user? There is no option to show security-groups bound to particular
 tenant. Is there any CLI command to figure out the same?

 Thanks 

Re: [Openstack] CLI command to figure out security-group's association to particular tenant/user

2013-06-28 Thread Rahul Sharma
Thanks Aaron for your kind help. It worked. Is there any doc which lists
all the possible commands and their usage for quantum? because --help
doesn't help in identifying all the parameters, is there any reference
which one can use to get the complete command syntax?

-Regards
Rahul Sharma


On Fri, Jun 28, 2013 at 12:45 PM, Aaron Rosen aro...@nicira.com wrote:




 On Thu, Jun 27, 2013 at 10:51 PM, Rahul Sharma 
 rahulsharma...@gmail.comwrote:

 Hi Aaron,

 Thanks for the CLI. I have a query related to that. I have a multinode
 openstack-deployment. To allow all the ports of VM accessible from outside,
 I need to add a rule *TCP port-range 1-65535 Allow* using Horizon
 dashboard. Now this rule is pushed to Quantum database as well as Nova
 database.


 This is only stored in the quantum database. When querying nova for this
 information it will query quantum.


 root@controller1:~# quantum security-group-rule-list --
 --tenant-id=40a7cd193a794161bfefd62364e64d03


 +--++---+--+--+--+
 | id   | security_group | direction |
 protocol | remote_ip_prefix | remote_group |

 +--++---+--+--+--+
 | 24cd1f88-8b50-45da-822c-e932178aeffd | default| egress
 |  |  |  |
 | 54e72726-61d5-4253-a92f-47a84d0ec882 | default| ingress
 |  |  | default  |
 | 977c7aff-9649-4037-af03-086d5db4955a | default| egress
 |  |  |  |
 *| d3e0d85c-b9c7-4fc3-9009-d14ed085876a | default| ingress   |
 tcp  | 0.0.0.0/0|  |*
 | e0887d63-bee2-4848-acce-c193aa03ef02 | default| ingress
 |  |  | default  |

 +--++---+--+--+--+

 root@controller1:~# nova --os-username test --os-password test
 --os-tenant-name test secgroup-list-rules default
 +-+---+-+---+--+
 | IP Protocol | From Port | To Port | IP Range  | Source Group |
 +-+---+-+---+--+
 | | -1| -1  |   | default  |
 | | -1| -1  |   | default  |
 *| tcp | 1 | 65535   | 0.0.0.0/0 |  |*
 +-+---+-+---+--+

 How can I do the same using CLI? Is there any single command which will
 do this task or I need to manually do this from UI? I tried adding rule
 using nova and quantum commands but its giving me error in taking
 parameters like 0.0.0.0/0 or due to something else which is not evident
 from the error message. I am using Grizzly release.


 quantum security-group-rule-create --protocol tcp --ethertype IPv4
 --port-range-min 1 --port-range-max 65535  --remote-ip-prefix 0.0.0.0/0
  default

 or

 nova secgroup-add-rule default tcp 1 65355 0.0.0.0/0


 Thanks and Regards
 Rahul Sharma


 On Thu, Jun 27, 2013 at 10:25 PM, Aaron Rosen aro...@nicira.com wrote:

 Hi Rahul,

 The issue is that you are running as an admin user so it shows all the
 security groups for every tenant. If you want to list the security groups
 for just one particular tenant you can do this:


  quantum security-group-list  -- --tenant-id=tenant_id


 Aaron



 On Thu, Jun 27, 2013 at 5:54 AM, Rahul Sharma 
 rahulsharma...@gmail.comwrote:

 Hi All,

 I have a query regarding the security-groups. Whenever I create a new
 tenant, a default security-group is created for that tenant. Now I want to
 find out which security-group is for which tenant? If I run quantum
 security-group-list, then it shows me the security-groups is below 
 format:-
 root@controller1:~# quantum security-group-list

 +--+-+-+
 | id   | name|
 description |

 +--+-+-+
 | 429f8e9e-edfc-4173-b599-9d91d9f7cb7d | default |
 default |
 | 47cbba23-6a73-44dc-b7c4-46794ed7aa5a | default |
 default |
 | 5ea93a09-6d96-4688-8005-99f8de4f20d7 | default |
 default |
 | 81cb819c-ffc2-4c26-b390-8e24b11f3443 | default |
 default |
 | 83778bc4-bbd2-4e02-9131-c5d4cf8a9e9b | default |
 default |
 | 9ca14384-00f0-4597-acd4-00bdec10ab5c | default |
 default |
 | a0e42478-ff76-4513-a698-7d7b0450a878 | default |
 default |
 | 

[Openstack] openstack pandora tester

2013-06-28 Thread Peter Cheung
Dear All   I am building a pandora testing site, so people don't need to 
install the pandora server to test the pandora client. It would be easier for 
people who want to try pandora.   But our testing servers is still building, at 
the same time it can allow 10 people to connect and create 4 VMs for eash user.
Please leave me your email if you want to try.
https://docs.google.com/spreadsheet/ccc?key=0AoEcIESTbvpwdEhaVVE1U3A4MzV1M0k0T1dNYXdZLUEusp=sharing
Thanksfrom Peter  ___
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] CLI command to figure out security-group's association to particular tenant/user

2013-06-28 Thread Akihiro MOTOKI
The detail parameters are described in the API reference. It is the best
document to know the parameters'detail at the moment.
http://docs.openstack.org/api/openstack-network/2.0/content/security-groups-ext.html

In general options of quantum command can be mapped to API attributes one
to one.

Akihiro


2013年6月28日金曜日 Rahul Sharma rahulsharma...@gmail.com:

 Thanks Aaron for your kind help. It worked. Is there any doc which lists
 all the possible commands and their usage for quantum? because --help
 doesn't help in identifying all the parameters, is there any reference
 which one can use to get the complete command syntax?

 -Regards
 Rahul Sharma


 On Fri, Jun 28, 2013 at 12:45 PM, Aaron Rosen aro...@nicira.com wrote:




 On Thu, Jun 27, 2013 at 10:51 PM, Rahul Sharma 
 rahulsharma...@gmail.comwrote:

 Hi Aaron,

 Thanks for the CLI. I have a query related to that. I have a multinode
 openstack-deployment. To allow all the ports of VM accessible from outside,
 I need to add a rule *TCP port-range 1-65535 Allow* using Horizon
 dashboard. Now this rule is pushed to Quantum database as well as Nova
 database.


 This is only stored in the quantum database. When querying nova for this
 information it will query quantum.


 root@controller1:~# quantum security-group-rule-list --
 --tenant-id=40a7cd193a794161bfefd62364e64d03


 +--++---+--+--+--+
 | id   | security_group | direction |
 protocol | remote_ip_prefix | remote_group |

 +--++---+--+--+--+
 | 24cd1f88-8b50-45da-822c-e932178aeffd | default| egress
 |  |  |  |
 | 54e72726-61d5-4253-a92f-47a84d0ec882 | default| ingress
 |  |  | default  |
 | 977c7aff-9649-4037-af03-086d5db4955a | default| egress
 |  |  |  |
 *| d3e0d85c-b9c7-4fc3-9009-d14ed085876a | default| ingress   |
 tcp  | 0.0.0.0/0|  |*
 | e0887d63-bee2-4848-acce-c193aa03ef02 | default| ingress
 |  |  | default  |

 +--++---+--+--+--+

 root@controller1:~# nova --os-username test --os-password test
 --os-tenant-name test secgroup-list-rules default
 +-+---+-+---+--+
 | IP Protocol | From Port | To Port | IP Range  | Source Group |
 +-+---+-+---+--+
 | | -1| -1  |   | default  |
 | | -1| -1  |   | default  |
 *| tcp | 1 | 65535   | 0.0.0.0/0 |  |*
 +-+---+-+---+--+

 How can I do the same using CLI? Is there any single command which will do
 this task or I need to manually do this from UI? I tried adding rule using
 nova and quantum commands but its giving me error in taking parameters like
 0.0.0.0/0 or due to something else which is not evident from the error
 message. I am using Grizzly release.


 quantum security-group-rule-create --protocol tcp --ethertype IPv4
 --port-range-min 1 --port-range-max 65535  --remote-ip-prefix 0.0.0.0/0
  default

 or

 nova secgroup-add-rule default tcp 1 65355 0.0.0.0/0


 Thanks and Regards



-- 
Akihiro MOTOKI amot...@gmail.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


Re: [Openstack] HTTP headers are incorrectly treated case sensitive by jClouds causing OpenStack x-storage-url to fail

2013-06-28 Thread Chmouel Boudjnah
On Fri, Jun 28, 2013 at 2:00 AM, Ali, Saqib docbook@gmail.com wrote:
 Is there anything we can do to work around this, while someone from the
 jClouds community fixes this issue?


I would be believe a jclouds fix would be faster to get in than to try
agree on a hack to do on swift.

Chmouel.

___
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] HTTP headers are incorrectly treated case sensitive by jClouds causing OpenStack x-storage-url to fail

2013-06-28 Thread Ali, Saqib
Chmouel,

Not really a hack on the swift, just the apache web frontend[1]

1. http://docs.openstack.org/developer/swift/apache_deployment_guide.html


On Fri, Jun 28, 2013 at 6:26 AM, Chmouel Boudjnah chmo...@enovance.comwrote:

 On Fri, Jun 28, 2013 at 2:00 AM, Ali, Saqib docbook@gmail.com wrote:
  Is there anything we can do to work around this, while someone from the
  jClouds community fixes this issue?


 I would be believe a jclouds fix would be faster to get in than to try
 agree on a hack to do on swift.

 Chmouel.

___
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] [Swift] Updating best practices for XFS inode size

2013-06-28 Thread Chuck Thier
Swift stores object metadata in the xattrs of the file on disk and XFS
stores xattrs in the inodes.  When swift was first developed, there were
performance issues with using the default inode size in XFS, and led to us
recommending to change the inode size when creating XFS filesystems.

In the past couple of years, the XFS team has made some big improvements to
inode allocation and use.  With some prompting from the XFS team at Redhat,
I revisited testing the default inode size with swift.  If you are using
recent Linux Kernels, using the default inode size no longer has any impact
to write (PUT) performance through swift.  With this change we also get
some added benefits such as improved caching of inodes and better overall
file system performance.

I think this is most greatly demonstrated in the following graph displaying
total replication time over a period of two weeks:

[image: Inline image 1]

The green line represents the average of a handful of storage nodes that
have the inode size set to 1024, and the blue line represents storage nodes
that have the default inode size (256).

I currently have a merge proposal[1] in process that updates the swift
documentation, but thought I would send an email to the larger group to
spread the word.

I would like to thank the XFS folks at Redhat for letting us know about the
improvements in XFS, and the XFS team in general for the great work they
have done.

--
Chuck

[1] https://review.openstack.org/#/c/34890/
replication.png___
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] OpenStack Community Weekly Newsletter (June 21-28)

2013-06-28 Thread Stefano Maffulli

Hong Kong Summit -- Registration, Call for Speakers  Sponsors
Now Open!

http://www.openstack.org/blog/2013/06/hong-kong-summit-registration-call-for-speakers-sponsors-now-open/


 ???, 
http://openstacksummitnovember2013.eventbrite.com/


  OpenStack Summit Survey Results
  http://www.openstack.org/blog/2013/06/openstack-summit-survey-results/

Key Findings:

  * *Overall: 96% of people rating the overall Summit as Good or
Excellent.  *
  * *Top areas to improve:*  Clearly the Network and the Session Rooms
(size, acoustics, equipment) were unacceptable.
  * *Format:* Stackers favored keeping the Design Summit co-located with
the rest of the Summit sessions by a margin of 4:1 over breaking it
out separately


  Up for a challenge? Here's the OpenStack Essentials quiz!
  
http://www.hastexo.com/blogs/florian/2013/06/24/challenge-heres-openstack-essentials-quiz

Novice, hotshot, expert or wizard? Show off your OpenStack knowledge in
this brand new quiz by Florian Haas
http://www.hastexo.com/blogs/florian/tag/openstack/feed. The
*OpenStack Essentials quiz
http://www.hastexo.com/resources/quizzes/openstack-essentials-grizzly*
is a challenging, fun way for you to test your OpenStack knowledge. It
takes no more than 30 minutes, or maybe even just 10 if you're super
awesome.


  Python APIs: The best-kept secret of OpenStack
  
http://www.ibm.com/developerworks/cloud/library/cl-openstack-pythonapis/index.html

As an OpenStack user or administrator, you often need to write scripts
to automate common tasks. In addition to the REST and command-line
interfaces, OpenStack exposes native Python API bindings. Learn how to
use these Python bindings to greatly simplify the process of writing
OpenStack automation scripts. An article on DeveloperWorks by Lorin
Hochstein
http://www.ibm.com/developerworks/cloud/library/cl-openstack-pythonapis/index.html#author1,
Lead Architect, Cloud Services, Nimbis Services


  A puppet module for building Windows/Hyper-V OpenStack Compute
  nodes https://github.com/ppouliot/ppouliot-openstack-hyper-v

Peter Pouliot http://www.openstack.org/community/members/profile/311
has been working on a A starting point for building Windows/Hyper-V
OpenStack Compute nodes. The modules he recently pushed begin the
configuration of a openstack-hyper-v compute node for openstack. It
currently has the beginings of both from package and from source
options. This is still a work in progress, contributions are welcome.


Tips 'n Tricks

  * By XLcloud http://xlcloud.org/bin/view/Blog/OpenStack: Devstack
with GRE tunnels in Havana

http://xlcloud.org/bin/view/Blog/Devstack+with+GRE+tunnels+in+Havana?language=en
  * By eNovance http://www.enovance.com/: Using Duplicity with
Cloudwatt for online backups

http://www.enovance.com/fr/blog/5776/using-duplicity-with-cloudwatt-for-online-backups
  * By Ryan Lane http://ryandlane.com/blog: Per-project users and
groups (aka service groups)

http://ryandlane.com/blog/2013/06/27/per-project-users-and-groups-aka-service-groups/
  * By Mate Lakat http://blogs.citrix.com/: OpenStack -- XenServer --
type Image to Volume

http://blogs.citrix.com/2013/06/27/openstack-xenserver-type-image-to-volume/
  * By Logilab

http://www.logilab.org/view?rql=Any%20X%20ORDERBY%20AA%20DESC%20LIMIT%2010%20WHERE%20E%20eid%20115182%2C%20E%20tags%20X%2C%20X%20creation_date%20AA%2C%20X%20is%20BlogEntry:
About salt-ami-cloud-builder http://www.logilab.org/blogentry/145033
  * By Giulio Fidente http://giuliofidente.com/: OpenStack Glance --
Use Swift as backend

http://giuliofidente.com/2013/06/openstack-glance-use-swift-as-backend.html


Upcoming Events

  * EuroPython 2013 https://ep2013.europython.eu/ Jul 01 -- 07, 2013
-- Firenze, Italy Details https://ep2013.europython.eu/
  * FISL 14 http://softwarelivre.org/fisl14 Jul 03 -- 06, 2013 --
Details http://softwarelivre.org/fisl14
  * PyCon Australia -- OpenStack Miniconf
http://2013.pycon-au.org/programme/schedule/friday Jul 05, 2013 --
Hobart, Australia Details
http://2013.pycon-au.org/programme/schedule/friday
  * Deploying a 3D Virtual World on OpenStack Cloud
http://www.cyberport.hk/campaign/edm/openstack/eDM/eDM2.html Jul
05, 2013 -- Hong Kong Details
http://www.cyberport.hk/campaign/edm/openstack/eDM/eDM2.html
  * Austin Meetup http://www.meetup.com/OpenStack-Austin/ Jul 11, 2013
-- Austin Details http://www.meetup.com/OpenStack-Austin/
  * Boston Meetup http://www.meetup.com/Openstack-Boston/ Jul 16, 2013
-- Boston Details http://www.meetup.com/Openstack-Boston/
  * OSCON 2013 http://www.oscon.com/oscon2013 Jul 22 -- 26, 2013 --
Portland, OR Details http://www.oscon.com/oscon2013


Reports from Previous Events

  * Report: June month OpenStack meetup, Bangalore , India


Re: [Openstack] HTTP headers are incorrectly treated case sensitive by jClouds causing OpenStack x-storage-url to fail

2013-06-28 Thread David Hadas
Ali hi,

On my system I get the headers as  X-Storage-Url when running under Apache2
front end (not lowercase).

Btw, I am always interested to learn how people are using Swift with the
Apache front end as this is a fairly recent addition (we are working not to
get it into devstack), can you describe shortly your setup and the reason
behind choosing Apache front end?

DH


Regards,
David Hadas,
Openstack Swift ATC, Architect, Master Inventor
IBM Research Labs, Haifa
Tel:Int+972-4-829-6104
Fax:   Int+972-4-829-6112




From:   Ali, Saqib docbook@gmail.com
To: Chmouel Boudjnah chmo...@enovance.com,
Cc: openstack@lists.launchpad.net
Date:   28/06/2013 04:30 PM
Subject:Re: [Openstack] HTTP headers are incorrectly treated case
sensitive by jClouds causing OpenStack x-storage-url to fail
Sent by:Openstack openstack-bounces
+davidh=il.ibm@lists.launchpad.net



Chmouel,

Not really a hack on the swift, just the apache web frontend[1]

1. http://docs.openstack.org/developer/swift/apache_deployment_guide.html


On Fri, Jun 28, 2013 at 6:26 AM, Chmouel Boudjnah chmo...@enovance.com
wrote:
  On Fri, Jun 28, 2013 at 2:00 AM, Ali, Saqib docbook@gmail.com
  wrote:
   Is there anything we can do to work around this, while someone from the
   jClouds community fixes this issue?


  I would be believe a jclouds fix would be faster to get in than to try
  agree on a hack to do on swift.

  Chmouel.
___
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


[Openstack] Problem installing healthnmon

2013-06-28 Thread Claudio Marques
Hi Stacker's!

I have already ceilometer installed and fully functional on my 3 node
Grizzly architecture, but I need to get more info from the VMs that I have
installed. So I am trying to install healthnmon on my controller node,
but, with no success so far, because every time that I  try to install it
get an error, and I fail's the all installation process.

This is what I do:

*git clone http://github.com/stackforge/healthnmon.git*
*cd ~/healthnmon/
*
*./build_healthnmon.sh -d *

Everything seems to work fine until I get the following error. *(log of the
full installation process is attached, if anyone don't mind of double
checking it)*

/***
*copying setup.cfg - healthnmon-2013.1.g3*
*Writing healthnmon-2013.1.g3/setup.cfg*
*Creating tar archive*
*removing 'healthnmon-2013.1.g3' (and everything under it)*
*Successfully created healthnmon tar.*
*Source_dir created = healthnmon-2013.1.g3*
*sh: 1: dch: not found*
*sh: 1: debuild: not found*
*Build failed*
*Error: Failed to create healthnmon DEBIA*N


I found this tutorial on this link
https://github.com/healthnmon/healthnmon/wiki to install in Cent Os 6.3,
but, my controller Node is installed on a Ubuntu 13.04.


Am I missing something here ?

Any help will be much appreciated.


Thanks in advance

Claudio Marques

clau...@onesource.pt
http://www.onesource.pt/
running sdist
running egg_info
writing requirements to healthnmon.egg-info/requires.txt
writing healthnmon.egg-info/PKG-INFO
writing top-level names to healthnmon.egg-info/top_level.txt
writing dependency_links to healthnmon.egg-info/dependency_links.txt
writing requirements to healthnmon.egg-info/requires.txt
writing healthnmon.egg-info/PKG-INFO
writing top-level names to healthnmon.egg-info/top_level.txt
writing dependency_links to healthnmon.egg-info/dependency_links.txt
reading manifest template 'MANIFEST.in'
writing manifest file 'healthnmon.egg-info/SOURCES.txt'
creating healthnmon-2013.1.g3
creating healthnmon-2013.1.g3/bin
creating healthnmon-2013.1.g3/debian
creating healthnmon-2013.1.g3/etc
creating healthnmon-2013.1.g3/etc/healthnmon
creating healthnmon-2013.1.g3/healthnmon
creating healthnmon-2013.1.g3/healthnmon.egg-info
creating healthnmon-2013.1.g3/healthnmon/api
creating healthnmon-2013.1.g3/healthnmon/collector
creating healthnmon-2013.1.g3/healthnmon/common
creating healthnmon-2013.1.g3/healthnmon/db
creating healthnmon-2013.1.g3/healthnmon/db/sqlalchemy
creating healthnmon-2013.1.g3/healthnmon/db/sqlalchemy/migrate_repo
creating healthnmon-2013.1.g3/healthnmon/db/sqlalchemy/migrate_repo/versions
creating healthnmon-2013.1.g3/healthnmon/notifier
creating healthnmon-2013.1.g3/healthnmon/openstack
creating healthnmon-2013.1.g3/healthnmon/openstack/common
creating healthnmon-2013.1.g3/healthnmon/profiler
creating healthnmon-2013.1.g3/healthnmon/resourcemodel
creating healthnmon-2013.1.g3/healthnmon/testing
creating healthnmon-2013.1.g3/healthnmon/tests
creating healthnmon-2013.1.g3/healthnmon/tests/api
creating healthnmon-2013.1.g3/healthnmon/tests/common
creating healthnmon-2013.1.g3/healthnmon/tests/db
creating healthnmon-2013.1.g3/healthnmon/tests/notifier
creating healthnmon-2013.1.g3/healthnmon/tests/profiler
creating healthnmon-2013.1.g3/healthnmon/tests/resourcemodel
creating healthnmon-2013.1.g3/healthnmon/tests/virtproxy
creating healthnmon-2013.1.g3/healthnmon/tests/virtproxy/events
creating healthnmon-2013.1.g3/healthnmon/tests/virtproxy/perfmon
creating healthnmon-2013.1.g3/healthnmon/tests/virtproxy/virt
creating healthnmon-2013.1.g3/healthnmon/tests/virtproxy/virt/libvirt
creating healthnmon-2013.1.g3/healthnmon/virtproxy
creating healthnmon-2013.1.g3/healthnmon/virtproxy/events
creating healthnmon-2013.1.g3/healthnmon/virtproxy/perfmon
creating healthnmon-2013.1.g3/healthnmon/virtproxy/virt
creating healthnmon-2013.1.g3/healthnmon/virtproxy/virt/libvirt
creating healthnmon-2013.1.g3/rpm
creating healthnmon-2013.1.g3/tools
making hard links in healthnmon-2013.1.g3...
hard linking .gitignore - healthnmon-2013.1.g3
hard linking .gitreview - healthnmon-2013.1.g3
hard linking LICENSE - healthnmon-2013.1.g3
hard linking MANIFEST.in - healthnmon-2013.1.g3
hard linking README.md - healthnmon-2013.1.g3
hard linking README.rst - healthnmon-2013.1.g3
hard linking build_healthnmon.sh - healthnmon-2013.1.g3
hard linking builddeb.py - healthnmon-2013.1.g3
hard linking openstack-common.conf - healthnmon-2013.1.g3
hard linking pylintrc - healthnmon-2013.1.g3
hard linking rpm_util.py - healthnmon-2013.1.g3
hard linking run_tests.sh - healthnmon-2013.1.g3
hard linking setup.cfg - healthnmon-2013.1.g3
hard linking setup.py - healthnmon-2013.1.g3
hard linking tox.ini - healthnmon-2013.1.g3
hard linking bin/healthnmon-collector - healthnmon-2013.1.g3/bin
hard linking bin/healthnmon-manage - healthnmon-2013.1.g3/bin
hard linking bin/healthnmon-virtproxy - healthnmon-2013.1.g3/bin
hard linking debian/changelog - healthnmon-2013.1.g3/debian
hard linking debian/compat - 

Re: [Openstack] [openstack-dev] CLI command to figure out security-group's association to particular tenant/user

2013-06-28 Thread Rick Jones

On 06/28/2013 01:55 AM, Rahul Sharma wrote:

Thanks Aaron for your kind help. It worked. Is there any doc which lists
all the possible commands and their usage for quantum? because --help
doesn't help in identifying all the parameters, is there any reference
which one can use to get the complete command syntax?


If you use quantum help command rather than quantum --help, it will 
give you more detailed help about command.  For example:


$ quantum help security-group-rule-create
usage: quantum security-group-rule-create [-h]
  [-f {html,json,shell,table,yaml}]
  [-c COLUMN] [--variable VARIABLE]
  [--prefix PREFIX]
  [--request-format {json,xml}]
  [--tenant-id TENANT_ID]
  [--direction {ingress,egress}]
  [--ethertype ETHERTYPE]
  [--protocol PROTOCOL]
  [--port-range-min PORT_RANGE_MIN]
  [--port-range-max PORT_RANGE_MAX]
  [--remote-ip-prefix 
REMOTE_IP_PREFIX]

  [--remote-group-id SOURCE_GROUP]
  SECURITY_GROUP

Create a security group rule.

positional arguments:
  SECURITY_GROUPSecurity group name or id to add rule.

optional arguments:
  -h, --helpshow this help message and exit
  --request-format {json,xml}
the xml or json request format
  --tenant-id TENANT_ID
the owner tenant ID
  --direction {ingress,egress}
direction of traffic: ingress/egress
  --ethertype ETHERTYPE
IPv4/IPv6
  --protocol PROTOCOL   protocol of packet
  --port-range-min PORT_RANGE_MIN
starting port range
  --port-range-max PORT_RANGE_MAX
ending port range
  --remote-ip-prefix REMOTE_IP_PREFIX
cidr to match on
  --remote-group-id SOURCE_GROUP
remote security group name or id to apply rule

output formatters:
  output formatter options

  -f {html,json,shell,table,yaml}, --format {html,json,shell,table,yaml}
the output format, defaults to table
  -c COLUMN, --column COLUMN
specify the column(s) to include, can be repeated

shell formatter:
  a format a UNIX shell can parse (variable=value)

  --variable VARIABLE   specify the variable(s) to include, can be repeated
  --prefix PREFIX   add a prefix to all variable names

rick jones

___
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] Problem installing healthnmon

2013-06-28 Thread Jobin Raju George
Hey, Claudio!

Just install dch and debuild using sudo apt-get install dch debuild

and then retry the setup using ./build_healthnmon.sh -d

Even though I had done this, I had some problems which I have posted on
ask.openstack.orghttps://ask.openstack.org/question/2574/healthnmon-nosectionerror-error/but
with no response yet. Hope you find the solution for that ;-)


On Fri, Jun 28, 2013 at 10:24 PM, Claudio Marques clau...@onesource.ptwrote:

 Hi Stacker's!

 I have already ceilometer installed and fully functional on my 3 node
 Grizzly architecture, but I need to get more info from the VMs that I have
 installed. So I am trying to install healthnmon on my controller node,
 but, with no success so far, because every time that I  try to install it
 get an error, and I fail's the all installation process.

 This is what I do:

 *git clone http://github.com/stackforge/healthnmon.git*
 *cd ~/healthnmon/
 *
 *./build_healthnmon.sh -d *

 Everything seems to work fine until I get the following error. *(log of
 the full installation process is attached, if anyone don't mind of double
 checking it)*

 /***
 *copying setup.cfg - healthnmon-2013.1.g3*
 *Writing healthnmon-2013.1.g3/setup.cfg*
 *Creating tar archive*
 *removing 'healthnmon-2013.1.g3' (and everything under it)*
 *Successfully created healthnmon tar.*
 *Source_dir created = healthnmon-2013.1.g3*
 *sh: 1: dch: not found*
 *sh: 1: debuild: not found*
 *Build failed*
 *Error: Failed to create healthnmon DEBIA*N


 I found this tutorial on this link
 https://github.com/healthnmon/healthnmon/wiki to install in Cent Os 6.3,
 but, my controller Node is installed on a Ubuntu 13.04.


 Am I missing something here ?

 Any help will be much appreciated.


 Thanks in advance

 Claudio Marques

 clau...@onesource.pt
 http://www.onesource.pt/

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




-- 

Thanks and regards,

Jobin Raju George

Third Year, Information Technology

College of Engineering Pune

Alternate e-mail: georgejr10...@coep.ac.in
___
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] openvswitch information

2013-06-28 Thread Chris Wright
* Bourn, Lionel (lionel.bo...@turner.com) wrote:
 thank you. You are correct.  
 
 ip  link show qg-559e0c87-26
 
 27: qg-559e0c87-26: BROADCAST,UP,LOWER_UP mtu 1500 qdisc noqueue state 
 UNKNOWN 
 link/ether ee:eb:e0:88:00:50 brd ff:ff:ff:ff:ff:ff
 
 The next action that fails is 
 
 ip link set qg-559e0c87-26 address fa:16:3e:0f:70:da
 
 RTNETLINK answers: Device or resource busy

You need to down the interface first (setting mac on up interface is
only supported on newer kernels, I belive starting w/ 3.6).  What kernel
are you using?

thanks,
-chris

___
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] OpenStack Monitoring with Nagios

2013-06-28 Thread Narayanan, Krishnaprasad
Hi Stackers,

I am Krishnaprasad from University of Mainz, Germany and as a part of a 
project, we have developed APIs that gets monitoring information from Nagios 
for the virtual machines running in OpenStack cloud. The component aggregates 
basic VM information from OpenStack, available resource from Libvirt and run 
time resource usage details from Nagios. The aggregated information is 
published via REST APIs and the APIs are programmed in Java.

I would like to have a feedback from the community whether our monitoring using 
Nagios can be used or integrated with Ceilometer / Healthnmon. In this regard, 
I can share information regarding what we have developed so far and what we 
intend to do further.

Thanks
Krishnaprasad



___
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 Monitoring with Nagios

2013-06-28 Thread Matt Joyce
Ceilometer is authoritative data taken directly from message bus queries
and keeps a back history, as opposed to nagios which does periodic finite
state checks.

Ceilometer is intended to be a log of transactions necessary to provide
billing information.  Or potentially an audit log.  Nagios is very
definitely not that.  So it would be a separate solution.

 They serve different purposes.  But they can certainly be used to agument
each other depending on what your goal is in monitoring coverage.

-Matt



On Fri, Jun 28, 2013 at 12:53 PM, Narayanan, Krishnaprasad 
naray...@uni-mainz.de wrote:

  Hi Stackers,

 ** **

 I am Krishnaprasad from University of Mainz, Germany and as a part of a
 project, we have developed APIs that gets monitoring information from
 Nagios for the virtual machines running in OpenStack cloud. The component
 aggregates basic VM information from OpenStack, available resource from
 Libvirt and run time resource usage details from Nagios. The aggregated
 information is published via REST APIs and the APIs are programmed in Java.
 

 ** **

 I would like to have a feedback from the community whether our monitoring
 using Nagios can be used or integrated with Ceilometer / Healthnmon. In
 this regard, I can share information regarding what we have developed so
 far and what we intend to do further. 

 ** **

 Thanks

 Krishnaprasad

 ** **

 ** **

 ** **

 ___
 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] OpenStack Monitoring with Nagios

2013-06-28 Thread Sid Sudhi
Hi Narayanan,
I can offer some help to review them - Is there a link to documentation of
some sorts?

thanks
sid


On Fri, Jun 28, 2013 at 2:53 PM, Narayanan, Krishnaprasad 
naray...@uni-mainz.de wrote:

  Hi Stackers,

 ** **

 I am Krishnaprasad from University of Mainz, Germany and as a part of a
 project, we have developed APIs that gets monitoring information from
 Nagios for the virtual machines running in OpenStack cloud. The component
 aggregates basic VM information from OpenStack, available resource from
 Libvirt and run time resource usage details from Nagios. The aggregated
 information is published via REST APIs and the APIs are programmed in Java.
 

 ** **

 I would like to have a feedback from the community whether our monitoring
 using Nagios can be used or integrated with Ceilometer / Healthnmon. In
 this regard, I can share information regarding what we have developed so
 far and what we intend to do further. 

 ** **

 Thanks

 Krishnaprasad

 ** **

 ** **

 ** **

 ___
 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] Problem installing healthnmon

2013-06-28 Thread claudio marques
Thank you Jobin :)
Have a nice weekend
Cláudio Marques
claudio@onesource.pthttp://www.onesource.pt/Date: Fri, 28 Jun 2013 23:01:38 
+0530
From: jobin...@gmail.com
To: clau...@onesource.pt
CC: openstack@lists.launchpad.net
Subject: Re: [Openstack] Problem installing healthnmon

Hey, Claudio!

Just install dch and debuild using sudo apt-get install dch debuild

and then retry the setup using ./build_healthnmon.sh -d


Even though I had done this, I had some problems which I have posted on 
ask.openstack.org but with no response yet. Hope you find the solution for that 
;-)



On Fri, Jun 28, 2013 at 10:24 PM, Claudio Marques clau...@onesource.pt wrote:

Hi Stacker's!

I have already ceilometer installed and fully functional on my 3 node Grizzly 
architecture, but I need to get more info from the VMs that I have installed. 
So I am trying to install healthnmon on my controller node, but, with no 
success so far, because every time that I  try to install it get an error, and 
I fail's the all installation process. 


This is what I do:
git clone http://github.com/stackforge/healthnmon.git
cd ~/healthnmon/
./build_healthnmon.sh -d 
Everything seems to work fine until I get the following error. (log of the full 
installation process is attached, if anyone don't mind of double checking it)


/***copying setup.cfg - healthnmon-2013.1.g3Writing 
healthnmon-2013.1.g3/setup.cfgCreating tar archiveremoving 
'healthnmon-2013.1.g3' (and everything under it)

Successfully created healthnmon tar.Source_dir created = 
healthnmon-2013.1.g3sh: 1: dch: not foundsh: 1: debuild: not foundBuild failed

Error: Failed to create healthnmon DEBIAN

I found this tutorial on this link 
https://github.com/healthnmon/healthnmon/wiki to install in Cent Os 6.3, but, 
my controller Node is installed on a Ubuntu 13.04.




Am I missing something here ?

Any help will be much appreciated. 

Thanks in advance
Claudio Marques
claudio@onesource.pthttp://www.onesource.pt/



___

Mailing list: https://launchpad.net/~openstack

Post to : openstack@lists.launchpad.net

Unsubscribe : https://launchpad.net/~openstack

More help   : https://help.launchpad.net/ListHelp




-- 

Thanks and regards,


Jobin Raju George


Third Year, Information Technology


College of Engineering Pune


Alternate e-mail: georgejr10...@coep.ac.in








___
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] HTTP headers are incorrectly treated case sensitive by jClouds causing OpenStack x-storage-url to fail

2013-06-28 Thread Ali, Saqib
Hello David,

Thanks for the response.

I believe we are using the apache web frontend for the enabling SSL on the
end-points. I have asked our OpenStack folks to share the setup and
reasoning behind use of the Apache web frontend. They will respond here
shortly.

I am not sure why our instance of Apache web frontend is returning lower
case X-Storage-Url. When we connect directly to the proxy, the X-Storage-Url
are correct case. But the Apache frontend somehow makes it all lower case.

Would it possible for you to share the relevant Apache config and other
setup details for the setup that you have?

Thanks.




On Fri, Jun 28, 2013 at 9:38 AM, David Hadas dav...@il.ibm.com wrote:

 Ali hi,

 On my system I get the headers as  X-Storage-Url when running under Apache2
 front end (not lowercase).

 Btw, I am always interested to learn how people are using Swift with the
 Apache front end as this is a fairly recent addition (we are working not to
 get it into devstack), can you describe shortly your setup and the reason
 behind choosing Apache front end?

 DH


 Regards,
 David Hadas,
 Openstack Swift ATC, Architect, Master Inventor
 IBM Research Labs, Haifa
 Tel:Int+972-4-829-6104
 Fax:   Int+972-4-829-6112




 From:   Ali, Saqib docbook@gmail.com
 To: Chmouel Boudjnah chmo...@enovance.com,
 Cc: openstack@lists.launchpad.net
 Date:   28/06/2013 04:30 PM
 Subject:Re: [Openstack] HTTP headers are incorrectly treated case
 sensitive by jClouds causing OpenStack x-storage-url to fail
 Sent by:Openstack openstack-bounces
 +davidh=il.ibm@lists.launchpad.net



 Chmouel,

 Not really a hack on the swift, just the apache web frontend[1]

 1. http://docs.openstack.org/developer/swift/apache_deployment_guide.html


 On Fri, Jun 28, 2013 at 6:26 AM, Chmouel Boudjnah chmo...@enovance.com
 wrote:
   On Fri, Jun 28, 2013 at 2:00 AM, Ali, Saqib docbook@gmail.com
   wrote:
Is there anything we can do to work around this, while someone from the
jClouds community fixes this issue?


   I would be believe a jclouds fix would be faster to get in than to try
   agree on a hack to do on swift.

   Chmouel.
 ___
 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] HTTP headers are incorrectly treated case sensitive by jClouds causing OpenStack x-storage-url to fail

2013-06-28 Thread Ali, Haneef
As far as I know,  Apache will make it lower-case.  I use keystone with Apache 
frontend (mo-wsgi) and all the headers are in lowercase. I was wondering how 
David is getting correct case.  BTW my environment is Ubuntu Precise  running 
apache2.2

Thanks
Haneef

From: Openstack 
[mailto:openstack-bounces+haneef.ali=hp@lists.launchpad.net] On Behalf Of 
Ali, Saqib
Sent: Friday, June 28, 2013 1:53 PM
To: David Hadas
Cc: Chmouel Boudjnah; Openstack; openstack@lists.launchpad.net
Subject: Re: [Openstack] HTTP headers are incorrectly treated case sensitive by 
jClouds causing OpenStack x-storage-url to fail

Hello David,

Thanks for the response.

I believe we are using the apache web frontend for the enabling SSL on the 
end-points. I have asked our OpenStack folks to share the setup and reasoning 
behind use of the Apache web frontend. They will respond here shortly.

I am not sure why our instance of Apache web frontend is returning lower case 
X-Storage-Url. When we connect directly to the proxy, the X-Storage-Url are 
correct case. But the Apache frontend somehow makes it all lower case.

Would it possible for you to share the relevant Apache config and other setup 
details for the setup that you have?

Thanks.



On Fri, Jun 28, 2013 at 9:38 AM, David Hadas 
dav...@il.ibm.commailto:dav...@il.ibm.com wrote:
Ali hi,

On my system I get the headers as  X-Storage-Url when running under Apache2
front end (not lowercase).

Btw, I am always interested to learn how people are using Swift with the
Apache front end as this is a fairly recent addition (we are working not to
get it into devstack), can you describe shortly your setup and the reason
behind choosing Apache front end?

DH


Regards,
David Hadas,
Openstack Swift ATC, Architect, Master Inventor
IBM Research Labs, Haifa
Tel:Int+972-4-829-6104tel:%2B972-4-829-6104
Fax:   Int+972-4-829-6112tel:%2B972-4-829-6112




From:   Ali, Saqib docbook@gmail.commailto:docbook@gmail.com
To: Chmouel Boudjnah chmo...@enovance.commailto:chmo...@enovance.com,
Cc: openstack@lists.launchpad.netmailto:openstack@lists.launchpad.net
Date:   28/06/2013 04:30 PM
Subject:Re: [Openstack] HTTP headers are incorrectly treated case
sensitive by jClouds causing OpenStack x-storage-url to fail
Sent by:Openstack openstack-bounces

+davidh=il.ibm@lists.launchpad.netmailto:il.ibm@lists.launchpad.net



Chmouel,

Not really a hack on the swift, just the apache web frontend[1]

1. http://docs.openstack.org/developer/swift/apache_deployment_guide.html


On Fri, Jun 28, 2013 at 6:26 AM, Chmouel Boudjnah 
chmo...@enovance.commailto:chmo...@enovance.com
wrote:
  On Fri, Jun 28, 2013 at 2:00 AM, Ali, Saqib 
docbook@gmail.commailto:docbook@gmail.com
  wrote:
   Is there anything we can do to work around this, while someone from the
   jClouds community fixes this issue?


  I would be believe a jclouds fix would be faster to get in than to try
  agree on a hack to do on swift.

  Chmouel.
___
Mailing list: https://launchpad.net/~openstack
Post to : 
openstack@lists.launchpad.netmailto: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] HTTP headers are incorrectly treated case sensitive by jClouds causing OpenStack x-storage-url to fail

2013-06-28 Thread Ali, Saqib
Hello Haneef,

That's what we are seeing as well. So have have guys run into any issues
with jClouds?

Thanks.


On Fri, Jun 28, 2013 at 2:10 PM, Ali, Haneef haneef@hp.com wrote:

  As far as I know,  Apache will make it lower-case.  I use keystone with
 Apache frontend (mo-wsgi) and all the headers are in lowercase. I was
 wondering how David is getting correct case.  BTW my environment is Ubuntu
 Precise  running apache2.2

 ** **

 Thanks

 Haneef

 ** **

 *From:* Openstack [mailto:openstack-bounces+haneef.ali=
 hp@lists.launchpad.net] *On Behalf Of *Ali, Saqib
 *Sent:* Friday, June 28, 2013 1:53 PM
 *To:* David Hadas
 *Cc:* Chmouel Boudjnah; Openstack; openstack@lists.launchpad.net

 *Subject:* Re: [Openstack] HTTP headers are incorrectly treated case
 sensitive by jClouds causing OpenStack x-storage-url to fail

 ** **

 Hello David,

 ** **

 Thanks for the response. 

 ** **

 I believe we are using the apache web frontend for the enabling SSL on the
 end-points. I have asked our OpenStack folks to share the setup and
 reasoning behind use of the Apache web frontend. They will respond here
 shortly.

 ** **

 I am not sure why our instance of Apache web frontend is returning lower
 case X-Storage-Url. When we connect directly to the proxy,
 the X-Storage-Url are correct case. But the Apache frontend somehow makes
 it all lower case.

 ** **

 Would it possible for you to share the relevant Apache config and other
 setup details for the setup that you have?

 ** **

 Thanks.

 ** **

 ** **

 ** **

 On Fri, Jun 28, 2013 at 9:38 AM, David Hadas dav...@il.ibm.com wrote:***
 *

 Ali hi,

 On my system I get the headers as  X-Storage-Url when running under Apache2
 front end (not lowercase).

 Btw, I am always interested to learn how people are using Swift with the
 Apache front end as this is a fairly recent addition (we are working not to
 get it into devstack), can you describe shortly your setup and the reason
 behind choosing Apache front end?

 DH


 Regards,
 David Hadas,
 Openstack Swift ATC, Architect, Master Inventor
 IBM Research Labs, Haifa
 Tel:Int+972-4-829-6104
 Fax:   Int+972-4-829-6112




 From:   Ali, Saqib docbook@gmail.com
 To: Chmouel Boudjnah chmo...@enovance.com,
 Cc: openstack@lists.launchpad.net
 Date:   28/06/2013 04:30 PM
 Subject:Re: [Openstack] HTTP headers are incorrectly treated case
 sensitive by jClouds causing OpenStack x-storage-url to fail
 Sent by:Openstack openstack-bounces
 +davidh=il.ibm@lists.launchpad.net




 Chmouel,

 Not really a hack on the swift, just the apache web frontend[1]

 1. http://docs.openstack.org/developer/swift/apache_deployment_guide.html


 On Fri, Jun 28, 2013 at 6:26 AM, Chmouel Boudjnah chmo...@enovance.com
 wrote:
   On Fri, Jun 28, 2013 at 2:00 AM, Ali, Saqib docbook@gmail.com
   wrote:
Is there anything we can do to work around this, while someone from the
jClouds community fixes this issue?


   I would be believe a jclouds fix would be faster to get in than to try
   agree on a hack to do on swift.

   Chmouel.

 ___
 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] OpenStack Monitoring with Nagios

2013-06-28 Thread Jay Kumbhani
Hello Krishna 

I totally agree with Matt. 

Ceilometer basically taking data from resource utilization perspective and 
Nagios is resource monitoring tool. Both have different context to use. 

As you said by integrating Nagios we can definitely create value to Celiometer 
by providing extra information to the user. 

I am open to help on your project. May I know more details and documentation on 
API's. 

Thanks
Jay

Sent from my iPad

On Jun 29, 2013, at 1:30 AM, Matt Joyce matt.jo...@cloudscaling.com wrote:

 Ceilometer is authoritative data taken directly from message bus queries and 
 keeps a back history, as opposed to nagios which does periodic finite state 
 checks.
 
 Ceilometer is intended to be a log of transactions necessary to provide 
 billing information.  Or potentially an audit log.  Nagios is very definitely 
 not that.  So it would be a separate solution.
 
  They serve different purposes.  But they can certainly be used to agument 
 each other depending on what your goal is in monitoring coverage.
 
 -Matt
 
 
 
 On Fri, Jun 28, 2013 at 12:53 PM, Narayanan, Krishnaprasad 
 naray...@uni-mainz.de wrote:
 Hi Stackers,
 
  
 
 I am Krishnaprasad from University of Mainz, Germany and as a part of a 
 project, we have developed APIs that gets monitoring information from Nagios 
 for the virtual machines running in OpenStack cloud. The component 
 aggregates basic VM information from OpenStack, available resource from 
 Libvirt and run time resource usage details from Nagios. The aggregated 
 information is published via REST APIs and the APIs are programmed in Java.
 
  
 
 I would like to have a feedback from the community whether our monitoring 
 using Nagios can be used or integrated with Ceilometer / Healthnmon. In this 
 regard, I can share information regarding what we have developed so far and 
 what we intend to do further.
 
  
 
 Thanks
 
 Krishnaprasad
 
  
 
  
 
  
 
 
 ___
 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
___
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-ubuntu-testing-notifications] Build Fixed: precise_havana_nova_trunk #459

2013-06-28 Thread openstack-testing-bot
Title: precise_havana_nova_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_nova_trunk/459/Project:precise_havana_nova_trunkDate of build:Fri, 28 Jun 2013 02:01:17 -0400Build duration:14 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesBetter default for my_ip if 8.8.8.8 is unreachableby dimseditnova/tests/test_utils.pyeditnova/utils.pyeditnova/netconf.pyConsole Output[...truncated 17725 lines...]deleting and forgetting pool/main/n/nova/nova-api_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-baremetal_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-cells_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-cert_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-common_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-kvm_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-lxc_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-qemu_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-uml_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-xcp_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute-xen_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-compute_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-conductor_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-console_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-consoleauth_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-doc_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-network_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-novncproxy_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-objectstore_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-scheduler_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-spiceproxy_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-volume_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xcp-network_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xcp-plugins_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/nova-xvpvncproxy_2013.2+git201306280202~precise-0ubuntu1_all.debdeleting and forgetting pool/main/n/nova/python-nova_2013.2+git201306280202~precise-0ubuntu1_all.debINFO:root:Storing current commit for next build: e71081b856b06513cc1e56a9adb2a619967f0eaeINFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hbzr branch lp:~ubuntu-server-dev/nova/havana novadch -b -D precise --newversion 1:2013.2+git201306280202~precise-0ubuntu1 Automated Ubuntu testing build:dch -a No change rebuild.debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201306280202~precise-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpdqW1Uj/nova/debian/controlsbuild -d precise-havana -n -A nova_2013.2+git201306280202~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/havana nova_2013.2+git201306280202~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-havana nova_2013.2+git201306280202~precise-0ubuntu1_amd64.changes+ [ 0 != 0 ]+ jenkins-cli build -p pipeline_parameters=pipeline_parameters -p PARENT_BUILD_TAG=jenkins-precise_havana_nova_trunk-459 pipeline_runnerEmail 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: saucy_havana_nova_trunk #301

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/301/Project:saucy_havana_nova_trunkDate of build:Fri, 28 Jun 2013 02:02:11 -0400Build duration:13 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesBetter default for my_ip if 8.8.8.8 is unreachableby dimseditnova/utils.pyeditnova/netconf.pyeditnova/tests/test_utils.pyConsole Output[...truncated 169285 lines...]dch -a [2d7bedd] Extract live-migration scheduler logic from the scheduler driverdch -a [e7a8dc0] Port quota classes extension to v3 API Part 1dch -a [90b5796] Refactor db.security_group_get() instance join behaviordch -a [92a3190] Fix serialization of iterable typesdch -a [a9c695d] Fix orphaned instance from get_by_uuid() and _from_db_object()dch -a [17de856] Baremetal_deploy_helper error message formatting.dch -a [3689771] Cells: Pass object for start/stopdch -a [c0ca847] Retry quota_reserve on DBDeadlockdch -a [344849f] Sync db.models.Quota* with migrations.dch -a [10db612] Allow scheduler manager NoValidHost exception to pass over RPCdch -a [7503798] Clean up scheduler testsdch -a [8f64193] No support for double nested 64 bit guest using VCDriverdch -a [c43f515] Add tests for libvirt's reboot functionalitydch -a [2402055] Check the instance ID before creating itdch -a [e387e7b] Log xml in libvirt _create_domain failuresdch -a [645c2d3] Accept is_public=None when listing all flavorsdch -a [b45d5d6] Fix the ServerPasswordController class doc stringdch -a [73f7155] Organize limits units and per-units constantsdch -a [f683831] Port flavors core API to v3 treedch -a [90da2c6] Change resource links when url has no project iddch -a [cf472da] port agent API into v3 part1dch -a [39e8f5b] Cells: Add support for global cinderdch -a [614b209] Adds v3 API extension discovery filteringdch -a [6caadd1] Adds support for the Indigo Virtual Switch (IVS)debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201306280203~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpqa1V9y/nova/debian/controlsbuild -d saucy-havana -n -A nova_2013.2+git201306280203~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306280203~saucy-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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306280203~saucy-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: saucy_havana_quantum_trunk #182

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_quantum_trunk/182/Project:saucy_havana_quantum_trunkDate of build:Fri, 28 Jun 2013 03:31:19 -0400Build duration:48 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0Changesmove database config items into quantum.confby gongysheditetc/quantum.confeditetc/quantum/plugins/openvswitch/ovs_quantum_plugin.inieditetc/quantum/plugins/ryu/ryu.inieditetc/quantum/plugins/linuxbridge/linuxbridge_conf.inieditetc/quantum/plugins/ml2/ml2_conf.inieditetc/quantum/plugins/bigswitch/restproxy.inieditetc/quantum/plugins/cisco/cisco_plugins.inieditetc/quantum/plugins/mlnx/mlnx_conf.inieditetc/quantum/plugins/nec/nec.inieditetc/quantum/plugins/plumgrid/plumgrid.inieditetc/quantum/plugins/brocade/brocade.inieditetc/quantum/plugins/nicira/nvp.inieditetc/quantum/plugins/midonet/midonet.inieditetc/quantum/plugins/hyperv/hyperv_quantum_plugin.inieditetc/quantum/plugins/metaplugin/metaplugin.iniConsole Output[...truncated 1383 lines...]hard linking tools/check_i18n_test_case.txt -> quantum-2013.2/toolshard linking tools/clean.sh -> quantum-2013.2/toolshard linking tools/i18n_cfg.py -> quantum-2013.2/toolshard linking tools/install_venv.py -> quantum-2013.2/toolshard linking tools/install_venv_common.py -> quantum-2013.2/toolshard linking tools/patch_tox_venv.py -> quantum-2013.2/toolshard linking tools/with_venv.sh -> quantum-2013.2/toolscopying setup.cfg -> quantum-2013.2Writing quantum-2013.2/setup.cfgcreating distCreating tar archiveremoving 'quantum-2013.2' (and everything under it)DEBUG:root:Derived package version from tarball: 2013.2INFO:root:Building package using /tmp/tmpTeDLGr/quantum_2013.2+git201306280331~saucy.orig.tar.gzINFO:root:Generating git changelog entries for this packageDEBUG:root:['git', 'log', '-n1', '--no-merges', '--pretty=format:%H']DEBUG:root:74419faacf93a5e22ff6bd3f033a7fbd1c99a223INFO:root:Detected previous commit - readingDEBUG:root:['git', 'log', '2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD', '--no-merges', '--pretty=format:[%h] %s']INFO:root:Branching main packaging branch from launchpadDEBUG:root:['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']bzr: ERROR: Not a branch: "bzr+ssh://bazaar.launchpad.net/~ubuntu-server-dev/quantum/havana/".ERROR:root:Error occurred during package creation/build: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3ERROR:root:Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/quantum/havana quantumTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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_havana_quantum_trunk #244

2013-06-28 Thread openstack-testing-bot
Title: precise_havana_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_quantum_trunk/244/Project:precise_havana_quantum_trunkDate of build:Fri, 28 Jun 2013 03:31:19 -0400Build duration:44 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0Changesmove database config items into quantum.confby gongysheditetc/quantum/plugins/midonet/midonet.inieditetc/quantum/plugins/ml2/ml2_conf.inieditetc/quantum/plugins/openvswitch/ovs_quantum_plugin.inieditetc/quantum/plugins/metaplugin/metaplugin.inieditetc/quantum/plugins/nicira/nvp.inieditetc/quantum/plugins/brocade/brocade.inieditetc/quantum/plugins/bigswitch/restproxy.inieditetc/quantum/plugins/hyperv/hyperv_quantum_plugin.inieditetc/quantum/plugins/plumgrid/plumgrid.inieditetc/quantum/plugins/linuxbridge/linuxbridge_conf.inieditetc/quantum.confeditetc/quantum/plugins/cisco/cisco_plugins.inieditetc/quantum/plugins/mlnx/mlnx_conf.inieditetc/quantum/plugins/nec/nec.inieditetc/quantum/plugins/ryu/ryu.iniConsole Output[...truncated 1191 lines...]hard linking tools/check_i18n_test_case.txt -> quantum-2013.2/toolshard linking tools/clean.sh -> quantum-2013.2/toolshard linking tools/i18n_cfg.py -> quantum-2013.2/toolshard linking tools/install_venv.py -> quantum-2013.2/toolshard linking tools/install_venv_common.py -> quantum-2013.2/toolshard linking tools/patch_tox_venv.py -> quantum-2013.2/toolshard linking tools/with_venv.sh -> quantum-2013.2/toolscopying setup.cfg -> quantum-2013.2Writing quantum-2013.2/setup.cfgcreating distCreating tar archiveremoving 'quantum-2013.2' (and everything under it)DEBUG:root:Derived package version from tarball: 2013.2INFO:root:Building package using /tmp/tmpHHH4Eb/quantum_2013.2+git201306280331~precise.orig.tar.gzINFO:root:Generating git changelog entries for this packageDEBUG:root:['git', 'log', '-n1', '--no-merges', '--pretty=format:%H']DEBUG:root:74419faacf93a5e22ff6bd3f033a7fbd1c99a223INFO:root:Detected previous commit - readingDEBUG:root:['git', 'log', '2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD', '--no-merges', '--pretty=format:[%h] %s']INFO:root:Branching main packaging branch from launchpadDEBUG:root:['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']bzr: ERROR: Not a branch: "bzr+ssh://bazaar.launchpad.net/~ubuntu-server-dev/quantum/havana/".ERROR:root:Error occurred during package creation/build: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3ERROR:root:Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/quantum/havana quantumTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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: saucy_havana_quantum_trunk #183

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_quantum_trunk/183/Project:saucy_havana_quantum_trunkDate of build:Fri, 28 Jun 2013 07:31:14 -0400Build duration:31 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesPort location tracking for BigSwitch Pluginby kevin.bentoneditquantum/extensions/portbindings.pyeditetc/quantum/plugins/bigswitch/restproxy.inieditquantum/tests/unit/bigswitch/test_restproxy_plugin.pyaddquantum/plugins/bigswitch/db/__init__.pyeditquantum/tests/unit/bigswitch/etc/restproxy.ini.testaddquantum/plugins/bigswitch/db/porttracker_db.pyeditquantum/plugins/bigswitch/plugin.pyaddquantum/db/migration/alembic_migrations/versions/3cabb850f4a5_table_to_track_port_.pyConsole Output[...truncated 54 lines...]Get:4 http://archive.ubuntu.com saucy/restricted Sources [6242 B]Get:5 http://archive.ubuntu.com saucy/universe Sources [6050 kB]Get:6 http://archive.ubuntu.com saucy/multiverse Sources [175 kB]Get:7 http://archive.ubuntu.com saucy/main amd64 Packages [1215 kB]Get:8 http://archive.ubuntu.com saucy/restricted amd64 Packages [10.1 kB]Get:9 http://archive.ubuntu.com saucy/universe amd64 Packages [5572 kB]Get:10 http://archive.ubuntu.com saucy/multiverse amd64 Packages [131 kB]Hit http://archive.ubuntu.com saucy/main Translation-enHit http://archive.ubuntu.com saucy/multiverse Translation-enHit http://archive.ubuntu.com saucy/restricted Translation-enHit http://archive.ubuntu.com saucy/universe Translation-enHit http://archive.ubuntu.com saucy-updates/main SourcesHit http://archive.ubuntu.com saucy-updates/restricted SourcesHit http://archive.ubuntu.com saucy-updates/universe SourcesHit http://archive.ubuntu.com saucy-updates/multiverse SourcesHit http://archive.ubuntu.com saucy-updates/main amd64 PackagesHit http://archive.ubuntu.com saucy-updates/restricted amd64 PackagesHit http://archive.ubuntu.com saucy-updates/universe amd64 PackagesHit http://archive.ubuntu.com saucy-updates/multiverse amd64 PackagesHit http://archive.ubuntu.com saucy-updates/main Translation-enHit http://archive.ubuntu.com saucy-updates/multiverse Translation-enHit http://archive.ubuntu.com saucy-updates/restricted Translation-enHit http://archive.ubuntu.com saucy-updates/universe Translation-enFetched 14.2 MB in 9s (1473 kB/s)W: Failed to fetch bzip2:/var/lib/apt/lists/partial/archive.ubuntu.com_ubuntu_dists_saucy_main_binary-amd64_Packages  Hash Sum mismatchE: 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', '-p', '-r', '-c', 'saucy-amd64-4722b175-15dc-4e94-8794-67258085487e', '-u', 'root', '--', 'apt-get', 'update']' returned non-zero exit status 100ERROR:root:Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-4722b175-15dc-4e94-8794-67258085487e', '-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 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-4722b175-15dc-4e94-8794-67258085487e', '-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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-p', '-r', '-c', 'saucy-amd64-4722b175-15dc-4e94-8794-67258085487e', '-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_havana_quantum_trunk #245

2013-06-28 Thread openstack-testing-bot
Title: precise_havana_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_quantum_trunk/245/Project:precise_havana_quantum_trunkDate of build:Fri, 28 Jun 2013 07:31:14 -0400Build duration:31 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesPort location tracking for BigSwitch Pluginby kevin.bentoneditquantum/extensions/portbindings.pyaddquantum/plugins/bigswitch/db/__init__.pyeditquantum/tests/unit/bigswitch/test_restproxy_plugin.pyaddquantum/db/migration/alembic_migrations/versions/3cabb850f4a5_table_to_track_port_.pyeditetc/quantum/plugins/bigswitch/restproxy.inieditquantum/plugins/bigswitch/plugin.pyaddquantum/plugins/bigswitch/db/porttracker_db.pyeditquantum/tests/unit/bigswitch/etc/restproxy.ini.testConsole Output[...truncated 1195 lines...]hard linking tools/check_i18n_test_case.txt -> quantum-2013.2/toolshard linking tools/clean.sh -> quantum-2013.2/toolshard linking tools/i18n_cfg.py -> quantum-2013.2/toolshard linking tools/install_venv.py -> quantum-2013.2/toolshard linking tools/install_venv_common.py -> quantum-2013.2/toolshard linking tools/patch_tox_venv.py -> quantum-2013.2/toolshard linking tools/with_venv.sh -> quantum-2013.2/toolscopying setup.cfg -> quantum-2013.2Writing quantum-2013.2/setup.cfgcreating distCreating tar archiveremoving 'quantum-2013.2' (and everything under it)DEBUG:root:Derived package version from tarball: 2013.2INFO:root:Building package using /tmp/tmpT4sAXN/quantum_2013.2+git201306280731~precise.orig.tar.gzINFO:root:Generating git changelog entries for this packageDEBUG:root:['git', 'log', '-n1', '--no-merges', '--pretty=format:%H']DEBUG:root:74419faacf93a5e22ff6bd3f033a7fbd1c99a223INFO:root:Detected previous commit - readingDEBUG:root:['git', 'log', '2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD', '--no-merges', '--pretty=format:[%h] %s']INFO:root:Branching main packaging branch from launchpadDEBUG:root:['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']bzr: ERROR: Not a branch: "bzr+ssh://bazaar.launchpad.net/~ubuntu-server-dev/quantum/havana/".ERROR:root:Error occurred during package creation/build: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3ERROR:root:Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/quantum/havana quantumTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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_havana_quantum_trunk #246

2013-06-28 Thread openstack-testing-bot
Title: precise_havana_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_quantum_trunk/246/Project:precise_havana_quantum_trunkDate of build:Fri, 28 Jun 2013 08:31:14 -0400Build duration:26 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesEnsure that the report state is not a blocking callby gkottoneditquantum/agent/rpc.pyeditquantum/agent/l3_agent.pyeditquantum/tests/unit/test_agent_rpc.pyeditquantum/tests/unit/test_dhcp_agent.pyeditquantum/agent/dhcp_agent.pyConsole Output[...truncated 1195 lines...]hard linking tools/check_i18n_test_case.txt -> quantum-2013.2/toolshard linking tools/clean.sh -> quantum-2013.2/toolshard linking tools/i18n_cfg.py -> quantum-2013.2/toolshard linking tools/install_venv.py -> quantum-2013.2/toolshard linking tools/install_venv_common.py -> quantum-2013.2/toolshard linking tools/patch_tox_venv.py -> quantum-2013.2/toolshard linking tools/with_venv.sh -> quantum-2013.2/toolscopying setup.cfg -> quantum-2013.2Writing quantum-2013.2/setup.cfgcreating distCreating tar archiveremoving 'quantum-2013.2' (and everything under it)DEBUG:root:Derived package version from tarball: 2013.2INFO:root:Building package using /tmp/tmp66jgfJ/quantum_2013.2+git201306280831~precise.orig.tar.gzINFO:root:Generating git changelog entries for this packageDEBUG:root:['git', 'log', '-n1', '--no-merges', '--pretty=format:%H']DEBUG:root:74419faacf93a5e22ff6bd3f033a7fbd1c99a223INFO:root:Detected previous commit - readingDEBUG:root:['git', 'log', '2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD', '--no-merges', '--pretty=format:[%h] %s']INFO:root:Branching main packaging branch from launchpadDEBUG:root:['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']bzr: ERROR: Not a branch: "bzr+ssh://bazaar.launchpad.net/~ubuntu-server-dev/quantum/havana/".ERROR:root:Error occurred during package creation/build: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3ERROR:root:Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/quantum/havana quantumTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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: saucy_havana_quantum_trunk #184

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_quantum_trunk/184/Project:saucy_havana_quantum_trunkDate of build:Fri, 28 Jun 2013 08:31:15 -0400Build duration:36 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesEnsure that the report state is not a blocking callby gkottoneditquantum/tests/unit/test_dhcp_agent.pyeditquantum/tests/unit/test_agent_rpc.pyeditquantum/agent/dhcp_agent.pyeditquantum/agent/rpc.pyeditquantum/agent/l3_agent.pyConsole Output[...truncated 1387 lines...]hard linking tools/check_i18n_test_case.txt -> quantum-2013.2/toolshard linking tools/clean.sh -> quantum-2013.2/toolshard linking tools/i18n_cfg.py -> quantum-2013.2/toolshard linking tools/install_venv.py -> quantum-2013.2/toolshard linking tools/install_venv_common.py -> quantum-2013.2/toolshard linking tools/patch_tox_venv.py -> quantum-2013.2/toolshard linking tools/with_venv.sh -> quantum-2013.2/toolscopying setup.cfg -> quantum-2013.2Writing quantum-2013.2/setup.cfgcreating distCreating tar archiveremoving 'quantum-2013.2' (and everything under it)DEBUG:root:Derived package version from tarball: 2013.2INFO:root:Building package using /tmp/tmpSpO6ea/quantum_2013.2+git201306280831~saucy.orig.tar.gzINFO:root:Generating git changelog entries for this packageDEBUG:root:['git', 'log', '-n1', '--no-merges', '--pretty=format:%H']DEBUG:root:74419faacf93a5e22ff6bd3f033a7fbd1c99a223INFO:root:Detected previous commit - readingDEBUG:root:['git', 'log', '2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD', '--no-merges', '--pretty=format:[%h] %s']INFO:root:Branching main packaging branch from launchpadDEBUG:root:['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']bzr: ERROR: Not a branch: "bzr+ssh://bazaar.launchpad.net/~ubuntu-server-dev/quantum/havana/".ERROR:root:Error occurred during package creation/build: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3ERROR:root:Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/quantum/havana quantumTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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: saucy_havana_nova_trunk #302

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/302/Project:saucy_havana_nova_trunkDate of build:Fri, 28 Jun 2013 09:31:20 -0400Build duration:12 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesIgnore lifecycle events for non-existent instancesby petereditnova/compute/manager.pyeditnova/tests/compute/test_compute.pyConsole Output[...truncated 169306 lines...]dch -a [2d7bedd] Extract live-migration scheduler logic from the scheduler driverdch -a [e7a8dc0] Port quota classes extension to v3 API Part 1dch -a [90b5796] Refactor db.security_group_get() instance join behaviordch -a [92a3190] Fix serialization of iterable typesdch -a [a9c695d] Fix orphaned instance from get_by_uuid() and _from_db_object()dch -a [17de856] Baremetal_deploy_helper error message formatting.dch -a [3689771] Cells: Pass object for start/stopdch -a [c0ca847] Retry quota_reserve on DBDeadlockdch -a [344849f] Sync db.models.Quota* with migrations.dch -a [10db612] Allow scheduler manager NoValidHost exception to pass over RPCdch -a [7503798] Clean up scheduler testsdch -a [8f64193] No support for double nested 64 bit guest using VCDriverdch -a [c43f515] Add tests for libvirt's reboot functionalitydch -a [2402055] Check the instance ID before creating itdch -a [e387e7b] Log xml in libvirt _create_domain failuresdch -a [645c2d3] Accept is_public=None when listing all flavorsdch -a [b45d5d6] Fix the ServerPasswordController class doc stringdch -a [73f7155] Organize limits units and per-units constantsdch -a [f683831] Port flavors core API to v3 treedch -a [90da2c6] Change resource links when url has no project iddch -a [cf472da] port agent API into v3 part1dch -a [39e8f5b] Cells: Add support for global cinderdch -a [614b209] Adds v3 API extension discovery filteringdch -a [6caadd1] Adds support for the Indigo Virtual Switch (IVS)debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201306280932~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpEAnKWw/nova/debian/controlsbuild -d saucy-havana -n -A nova_2013.2+git201306280932~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306280932~saucy-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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306280932~saucy-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: precise_havana_python-keystoneclient_trunk #49

2013-06-28 Thread openstack-testing-bot
Title: precise_havana_python-keystoneclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_python-keystoneclient_trunk/49/Project:precise_havana_python-keystoneclient_trunkDate of build:Fri, 28 Jun 2013 10:01:23 -0400Build duration:4 min 21 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesUse Python 3.x compatible print syntaxby dirkeditkeystoneclient/shell.pyeditkeystoneclient/generic/shell.pyeditkeystoneclient/v2_0/shell.pyedittools/install_venv.pyeditkeystoneclient/utils.pyConsole Output[...truncated 1403 lines...]Fail-Stage: buildHost Architecture: amd64Install-Time: 44Job: python-keystoneclient_0.3.0.10.g900e143+git201306281001~precise-0ubuntu1.dscMachine Architecture: amd64Package: python-keystoneclientPackage-Time: 104Source-Version: 1:0.3.0.10.g900e143+git201306281001~precise-0ubuntu1Space: 2920Status: attemptedVersion: 1:0.3.0.10.g900e143+git201306281001~precise-0ubuntu1Finished at 20130628-1005Build needed 00:01:44, 2920k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-havana', '-n', '-A', 'python-keystoneclient_0.3.0.10.g900e143+git201306281001~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-havana', '-n', '-A', 'python-keystoneclient_0.3.0.10.g900e143+git201306281001~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hbzr branch lp:~ubuntu-server-dev/python-keystoneclient/havana python-keystoneclientdch -b -D precise --newversion 1:0.3.0.10.g900e143+git201306281001~precise-0ubuntu1 Automated Ubuntu testing build:dch -a No change rebuild.debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-keystoneclient_0.3.0.10.g900e143+git201306281001~precise-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpdfRYUh/python-keystoneclient/debian/controlsbuild -d precise-havana -n -A python-keystoneclient_0.3.0.10.g900e143+git201306281001~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-havana', '-n', '-A', 'python-keystoneclient_0.3.0.10.g900e143+git201306281001~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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-havana', '-n', '-A', 'python-keystoneclient_0.3.0.10.g900e143+git201306281001~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: saucy_havana_python-keystoneclient_trunk #48

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_python-keystoneclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_python-keystoneclient_trunk/48/Project:saucy_havana_python-keystoneclient_trunkDate of build:Fri, 28 Jun 2013 10:01:26 -0400Build duration:6 min 6 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 1 out of the last 5 builds failed.80ChangesUse Python 3.x compatible print syntaxby dirkeditkeystoneclient/utils.pyeditkeystoneclient/generic/shell.pyeditkeystoneclient/shell.pyedittools/install_venv.pyeditkeystoneclient/v2_0/shell.pyConsole Output[...truncated 3048 lines...]Fail-Stage: buildHost Architecture: amd64Install-Time: 44Job: python-keystoneclient_0.3.0.10.g900e143+git201306281001~saucy-0ubuntu1.dscMachine Architecture: amd64Package: python-keystoneclientPackage-Time: 74Source-Version: 1:0.3.0.10.g900e143+git201306281001~saucy-0ubuntu1Space: 2632Status: attemptedVersion: 1:0.3.0.10.g900e143+git201306281001~saucy-0ubuntu1Finished at 20130628-1007Build needed 00:01:14, 2632k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-keystoneclient_0.3.0.10.g900e143+git201306281001~saucy-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-keystoneclient_0.3.0.10.g900e143+git201306281001~saucy-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hbzr branch lp:~ubuntu-server-dev/python-keystoneclient/havana python-keystoneclientdch -b -D saucy --newversion 1:0.3.0.10.g900e143+git201306281001~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a No change rebuild.debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-keystoneclient_0.3.0.10.g900e143+git201306281001~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpZCYxc4/python-keystoneclient/debian/controlsbuild -d saucy-havana -n -A python-keystoneclient_0.3.0.10.g900e143+git201306281001~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-keystoneclient_0.3.0.10.g900e143+git201306281001~saucy-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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-keystoneclient_0.3.0.10.g900e143+git201306281001~saucy-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: saucy_havana_nova_trunk #303

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/303/Project:saucy_havana_nova_trunkDate of build:Fri, 28 Jun 2013 10:32:15 -0400Build duration:9 min 23 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesMoves scheduler.manager._set_vm_state_and_notify to scheduler.utilsby tmelloeditnova/scheduler/manager.pyeditnova/scheduler/utils.pyConsole Output[...truncated 16676 lines...]dch -a [e7a8dc0] Port quota classes extension to v3 API Part 1dch -a [90b5796] Refactor db.security_group_get() instance join behaviordch -a [92a3190] Fix serialization of iterable typesdch -a [a9c695d] Fix orphaned instance from get_by_uuid() and _from_db_object()dch -a [17de856] Baremetal_deploy_helper error message formatting.dch -a [3689771] Cells: Pass object for start/stopdch -a [c0ca847] Retry quota_reserve on DBDeadlockdch -a [344849f] Sync db.models.Quota* with migrations.dch -a [10db612] Allow scheduler manager NoValidHost exception to pass over RPCdch -a [7503798] Clean up scheduler testsdch -a [8f64193] No support for double nested 64 bit guest using VCDriverdch -a [c43f515] Add tests for libvirt's reboot functionalitydch -a [2402055] Check the instance ID before creating itdch -a [e387e7b] Log xml in libvirt _create_domain failuresdch -a [645c2d3] Accept is_public=None when listing all flavorsdch -a [b45d5d6] Fix the ServerPasswordController class doc stringdch -a [73f7155] Organize limits units and per-units constantsdch -a [f683831] Port flavors core API to v3 treedch -a [90da2c6] Change resource links when url has no project iddch -a [cf472da] port agent API into v3 part1dch -a [39e8f5b] Cells: Add support for global cinderdch -a [614b209] Adds v3 API extension discovery filteringdch -a [6caadd1] Adds support for the Indigo Virtual Switch (IVS)debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201306281033~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmp1T_F30/nova/debian/controlsbuild -d saucy-havaINFO:root:Destroying schroot.na -n -A nova_2013.2+git201306281033~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306281033~saucy-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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306281033~saucy-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: saucy_havana_quantum_trunk #185

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_quantum_trunk/185/Project:saucy_havana_quantum_trunkDate of build:Fri, 28 Jun 2013 13:01:18 -0400Build duration:48 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesImprove readability for nvplib error messages.by amigliaccioeditquantum/plugins/nicira/nvplib.pyConsole Output[...truncated 1387 lines...]hard linking tools/check_i18n_test_case.txt -> quantum-2013.2/toolshard linking tools/clean.sh -> quantum-2013.2/toolshard linking tools/i18n_cfg.py -> quantum-2013.2/toolshard linking tools/install_venv.py -> quantum-2013.2/toolshard linking tools/install_venv_common.py -> quantum-2013.2/toolshard linking tools/patch_tox_venv.py -> quantum-2013.2/toolshard linking tools/with_venv.sh -> quantum-2013.2/toolscopying setup.cfg -> quantum-2013.2Writing quantum-2013.2/setup.cfgcreating distCreating tar archiveremoving 'quantum-2013.2' (and everything under it)DEBUG:root:Derived package version from tarball: 2013.2INFO:root:Building package using /tmp/tmppltBOQ/quantum_2013.2+git201306281301~saucy.orig.tar.gzINFO:root:Generating git changelog entries for this packageDEBUG:root:['git', 'log', '-n1', '--no-merges', '--pretty=format:%H']DEBUG:root:74419faacf93a5e22ff6bd3f033a7fbd1c99a223INFO:root:Detected previous commit - readingDEBUG:root:['git', 'log', '2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD', '--no-merges', '--pretty=format:[%h] %s']INFO:root:Branching main packaging branch from launchpadDEBUG:root:['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']bzr: ERROR: Not a branch: "bzr+ssh://bazaar.launchpad.net/~ubuntu-server-dev/quantum/havana/".ERROR:root:Error occurred during package creation/build: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3ERROR:root:Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/quantum/havana quantumTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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_havana_quantum_trunk #247

2013-06-28 Thread openstack-testing-bot
Title: precise_havana_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_quantum_trunk/247/Project:precise_havana_quantum_trunkDate of build:Fri, 28 Jun 2013 13:02:08 -0400Build duration:33 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesImprove readability for nvplib error messages.by amigliaccioeditquantum/plugins/nicira/nvplib.pyConsole Output[...truncated 1195 lines...]hard linking tools/check_i18n_test_case.txt -> quantum-2013.2/toolshard linking tools/clean.sh -> quantum-2013.2/toolshard linking tools/i18n_cfg.py -> quantum-2013.2/toolshard linking tools/install_venv.py -> quantum-2013.2/toolshard linking tools/install_venv_common.py -> quantum-2013.2/toolshard linking tools/patch_tox_venv.py -> quantum-2013.2/toolshard linking tools/with_venv.sh -> quantum-2013.2/toolscopying setup.cfg -> quantum-2013.2Writing quantum-2013.2/setup.cfgcreating distCreating tar archiveremoving 'quantum-2013.2' (and everything under it)DEBUG:root:Derived package version from tarball: 2013.2INFO:root:Building package using /tmp/tmpt7ihqX/quantum_2013.2+git201306281302~precise.orig.tar.gzINFO:root:Generating git changelog entries for this packageDEBUG:root:['git', 'log', '-n1', '--no-merges', '--pretty=format:%H']DEBUG:root:74419faacf93a5e22ff6bd3f033a7fbd1c99a223INFO:root:Detected previous commit - readingDEBUG:root:['git', 'log', '2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD', '--no-merges', '--pretty=format:[%h] %s']INFO:root:Branching main packaging branch from launchpadDEBUG:root:['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']bzr: ERROR: Not a branch: "bzr+ssh://bazaar.launchpad.net/~ubuntu-server-dev/quantum/havana/".ERROR:root:Error occurred during package creation/build: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3ERROR:root:Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/quantum/havana quantumTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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: saucy_havana_python-keystoneclient_trunk #49

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_python-keystoneclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_python-keystoneclient_trunk/49/Project:saucy_havana_python-keystoneclient_trunkDate of build:Fri, 28 Jun 2013 13:01:18 -0400Build duration:2 min 44 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesFix and enable H401by dirkedittests/test_auth_token_middleware.pyeditkeystoneclient/v2_0/roles.pyedittests/v3/utils.pyeditkeystoneclient/common/cms.pyeditkeystoneclient/v2_0/tenants.pyeditkeystoneclient/middleware/memcache_crypt.pyedittox.inieditkeystoneclient/exceptions.pyeditkeystoneclient/generic/client.pyeditkeystoneclient/middleware/auth_token.pyedittests/utils.pyeditkeystoneclient/access.pyeditkeystoneclient/v3/client.pyeditkeystoneclient/v2_0/client.pyConsole Output[...truncated 3083 lines...]Source-Version: 1:0.3.0.12.g9ee038f+git201306281301~saucy-0ubuntu1Space: 2632Status: attemptedVersion: 1:0.3.0.12.g9ee038f+git201306281301~saucy-0ubuntu1Finished at 20130628-1304Build needed 00:00:50, 2632k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-keystoneclient_0.3.0.12.g9ee038f+git201306281301~saucy-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-keystoneclient_0.3.0.12.g9ee038f+git201306281301~saucy-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 6dfcbc0ec7af5a33e0f264c6d581d550f1c7e7c5..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/python-keystoneclient/havana python-keystoneclientdch -b -D saucy --newversion 1:0.3.0.12.g9ee038f+git201306281301~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [fe8f902] Fix and enable H401dch -a [4087747] Unmock requests when testing complete.dch -a [f695342] Use Python 3.x compatible print syntaxdch -a [19591a5] Fix the cache interface to use time= by default.dch -a [2239c3b] Implements v3 auth client.dch -a [f3834c2] Python-2.6 compatibility for tests/test_keyring.pydch -a [2850915] python3: Introduce py33 to tox.inidebcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-keystoneclient_0.3.0.12.g9ee038f+git201306281301~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpWYzgN9/python-keystoneclient/debian/controlsbuild -d saucy-havana -n -A python-keystoneclient_0.3.0.12.g9ee038f+git201306281301~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-keystoneclient_0.3.0.12.g9ee038f+git201306281301~saucy-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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'python-keystoneclient_0.3.0.12.g9ee038f+git201306281301~saucy-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: saucy_havana_nova_trunk #304

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/304/Project:saucy_havana_nova_trunkDate of build:Fri, 28 Jun 2013 14:02:15 -0400Build duration:8 min 56 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd AggregateRamFilterby unicelleditnova/tests/scheduler/test_host_filters.pyeditnova/scheduler/filters/ram_filter.pyeditdoc/source/devref/filter_scheduler.rstAdd AggregateCoreFilterby unicelleditnova/scheduler/filters/core_filter.pyeditnova/tests/scheduler/test_host_filters.pyeditdoc/source/devref/filter_scheduler.rstPort images functionality to v3 API Part 1by cyeohaddnova/tests/api/openstack/compute/plugins/v3/test_images.pyaddnova/api/openstack/compute/plugins/v3/images.pyConsole Output[...truncated 16733 lines...]dch -a [92a3190] Fix serialization of iterable typesdch -a [a9c695d] Fix orphaned instance from get_by_uuid() and _from_db_object()dch -a [17de856] Baremetal_deploy_helper error message formatting.dch -a [3689771] Cells: Pass object for start/stopdch -a [c32a6d5] Add AggregateCoreFilterdch -a [f3a6de6] Add AggregateRamFilterdch -a [c0ca847] Retry quota_reserve on DBDeadlockdch -a [344849f] Sync db.models.Quota* with migrations.dch -a [10db612] Allow scheduler manager NoValidHost exception to pass over RPCdch -a [7503798] Clean up scheduler testsdch -a [8f64193] No support for double nested 64 bit guest using VCDriverdch -a [c43f515] Add tests for libvirt's reboot functionalitydch -a [2402055] Check the instance ID before creating itdch -a [e387e7b] Log xml in libvirt _create_domain failuresdch -a [645c2d3] Accept is_public=None when listing all flavorsdch -a [b45d5d6] Fix the ServerPasswordController class doc stringdch -a [73f7155] Organize limits units and per-units constantsdch -a [f683831] Port flavors core API to v3 treedch -a [90da2c6] Change resource links when url has no project iddch -a [cf472da] port agent API into v3 part1dch -a [39e8f5b] Cells: Add support for global cinderdch -a [614b209] Adds v3 API extension discovery filteringdch -a [6caadd1] Adds support for the Indigo Virtual Switch (IVS)debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2INFO:root:Destroying schroot.013.2+git201306281404~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpnpcoC9/nova/debian/controlsbuild -d saucy-havana -n -A nova_2013.2+git201306281404~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306281404~saucy-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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306281404~saucy-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: saucy_havana_nova_trunk #305

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/305/Project:saucy_havana_nova_trunkDate of build:Fri, 28 Jun 2013 15:01:18 -0400Build duration:7 min 31 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesPort server_diagnostics extension to v3 API Part1by cyeohaddnova/tests/api/openstack/compute/plugins/v3/test_server_diagnostics.pyaddnova/api/openstack/compute/plugins/v3/server_diagnostics.pydb.compute_node_update: ignore values[update_at]by petereditnova/tests/db/test_db_api.pyeditnova/db/sqlalchemy/api.pyAllow retrying network allocations separatelyby cbehrenseditnova/compute/manager.pyeditnova/tests/compute/test_compute.pyConsole Output[...truncated 16775 lines...]dch -a [a9c695d] Fix orphaned instance from get_by_uuid() and _from_db_object()dch -a [17de856] Baremetal_deploy_helper error message formatting.dch -a [3689771] Cells: Pass object for start/stopdch -a [c32a6d5] Add AggregateCoreFilterdch -a [f3a6de6] Add AggregateRamFilterdch -a [c0ca847] Retry quota_reserve on DBDeadlockdch -a [344849f] Sync db.models.Quota* with migrations.dch -a [10db612] Allow scheduler manager NoValidHost exception to pass over RPCdch -a [7503798] Clean up scheduler testsdch -a [8f64193] No support for double nested 64 bit guest using VCDriverdch -a [c43f515] Add tests for libvirt's reboot functionalitydch -a [2402055] Check the instance ID before creating itdch -a [e387e7b] Log xml in libvirt _create_domain failuresdch -a [645c2d3] Accept is_public=None when listing all flavorsdch -a [eaf5011] Port server_diagnostics extension to v3 API Part1dch -a [b45d5d6] Fix the ServerPasswordController class doc stringdch -a [73f7155] Organize limits units and per-units constantsdch -a [f683831] Port flavors core API to v3 treedch -a [90da2c6] Change resource links when url has no project iddch -a [cf472da] port agent API into v3 part1dch -a [39e8f5b] Cells: Add support for global cinderdch -a [614b209] Adds v3 API extension discovery filteringdch -a [6caadd1] Adds support for the IndigoINFO:root:Destroying schroot. Virtual Switch (IVS)debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201306281502~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpW4HCHn/nova/debian/controlsbuild -d saucy-havana -n -A nova_2013.2+git201306281502~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306281502~saucy-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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306281502~saucy-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: saucy_havana_nova_trunk #306

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/306/Project:saucy_havana_nova_trunkDate of build:Fri, 28 Jun 2013 16:01:30 -0400Build duration:6 min 17 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesPort cells extension to v3 API Part 1by cyeohaddnova/api/openstack/compute/plugins/v3/cells.pyaddnova/tests/api/openstack/compute/plugins/v3/test_cells.pyConsole Output[...truncated 16820 lines...]dch -a [17de856] Baremetal_deploy_helper error message formatting.dch -a [3689771] Cells: Pass object for start/stopdch -a [c32a6d5] Add AggregateCoreFilterdch -a [f3a6de6] Add AggregateRamFilterdch -a [c0ca847] Retry quota_reserve on DBDeadlockdch -a [344849f] Sync db.models.Quota* with migrations.dch -a [10db612] Allow scheduler manager NoValidHost exception to pass over RPCdch -a [7503798] Clean up scheduler testsdch -a [8f64193] No support for double nested 64 bit guest using VCDriverdch -a [c43f515] Add tests for libvirt's reboot functionalitydch -a [2402055] Check the instance ID before creating itdch -a [e387e7b] Log xml in libvirt _create_domain failuresdch -a [645c2d3] Accept is_public=None when listing all flavorsdch -a [eaf5011] Port server_diagnostics extension to v3 API Part1dch -a [b45d5d6] Fix the ServerPasswordController class doc stringdch -a [6515e01] Port cells extension to v3 API Part 1dch -a [73f7155] Organize limits units and per-units constantsdch -a [f683831] Port flavors core API to v3 treedch -a [90da2c6] Change resource links when url has no project iddch -a [cf472da] port agent API into v3 part1dch -a [39e8f5b] Cells: Add support for global cinderdch -a [614b209] Adds v3 API extension discoveryINFO:root:Destroying schroot. filteringdch -a [6caadd1] Adds support for the Indigo Virtual Switch (IVS)debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201306281601~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpChLJRn/nova/debian/controlsbuild -d saucy-havana -n -A nova_2013.2+git201306281601~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306281601~saucy-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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306281601~saucy-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: saucy_havana_keystone_trunk #97

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_keystone_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_keystone_trunk/97/Project:saucy_havana_keystone_trunkDate of build:Fri, 28 Jun 2013 17:01:18 -0400Build duration:3 min 44 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesClean up keystone-all.rstby revieweditkeystone/common/config.pyeditdoc/source/man/keystone-all.rstcheck for constraint before droppingby ayoungeditkeystone/common/sql/migration_helpers.pyConsole Output[...truncated 4400 lines...]Package: keystonePackage-Time: 66Source-Version: 1:2013.2+git201306281701~saucy-0ubuntu1Space: 8924Status: attemptedVersion: 1:2013.2+git201306281701~saucy-0ubuntu1Finished at 20130628-1704Build needed 00:01:06, 8924k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'keystone_2013.2+git201306281701~saucy-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'keystone_2013.2+git201306281701~saucy-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 3bc661a8a79c2d86c83b8a74184bb8dc62b2aa40..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/keystone/havana keystonedch -b -D saucy --newversion 1:2013.2+git201306281701~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [eb1b5ea] check for constraint before droppingdch -a [911c315] Stop passing context to managers (bug 1194938)dch -a [793b8eb] Clean up keystone-all.rstdch -a [600c38b] LDAP list group users not fail if user entry deleteddch -a [f79ccf4] Do not raise NEW exceptionsdebcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC keystone_2013.2+git201306281701~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpvLJcLn/keystone/debian/controlsbuild -d saucy-havana -n -A keystone_2013.2+git201306281701~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'keystone_2013.2+git201306281701~saucy-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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'keystone_2013.2+git201306281701~saucy-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: saucy_havana_nova_trunk #307

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/307/Project:saucy_havana_nova_trunkDate of build:Fri, 28 Jun 2013 18:02:21 -0400Build duration:14 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesVNC console does not work with VCDriverby hartsockseditnova/virt/vmwareapi/vmops.pyeditnova/tests/virt/vmwareapi/test_vmwareapi.pyeditnova/virt/vmwareapi/fake.pyeditnova/virt/vmwareapi/vm_util.pyeditnova/virt/vmwareapi/driver.pyeditnova/tests/virt/vmwareapi/test_vmwareapi_vm_util.pyConsole Output[...truncated 16823 lines...]dch -a [17de856] Baremetal_deploy_helper error message formatting.dch -a [3689771] Cells: Pass object for start/stopdch -a [c32a6d5] Add AggregateCoreFilterdch -a [f3a6de6] Add AggregateRamFilterdch -a [c0ca847] Retry quota_reserve on DBDeadlockdch -a [344849f] Sync db.models.Quota* with migrations.dch -a [10db612] Allow scheduler manager NoValidHost exception to pass over RPCdch -a [7503798] Clean up scheduler testsdch -a [8f64193] No support for double nested 64 bit guest using VCDriverdch -a [c43f515] Add tests for libvirt's reboot functionalitydch -a [2402055] Check the instance ID before creating itdch -a [e387e7b] Log xml in libvirt _create_domain failuresdch -a [645c2d3] Accept is_public=None when listing all flavorsdch -a [eaf5011] Port server_diagnostics extension to v3 API Part1dch -a [b45d5d6] Fix the ServerPasswordController class doc stringdch -a [6515e01] Port cells extension to v3 API Part 1dch -a [73f7155] Organize limits units and per-units constantsdch -a [f683831] Port flavors core API to v3 treedch -a [90da2c6] Change resource links when url has no project iddch -a [cf472da] port agent API into v3 part1dch -a [39e8f5b] Cells: Add support for globaINFO:root:Destroying schroot.l cinderdch -a [614b209] Adds v3 API extension discovery filteringdch -a [6caadd1] Adds support for the Indigo Virtual Switch (IVS)debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201306281803~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpQZ8Gen/nova/debian/controlsbuild -d saucy-havana -n -A nova_2013.2+git201306281803~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306281803~saucy-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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306281803~saucy-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: saucy_havana_keystone_trunk #98

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_keystone_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_keystone_trunk/98/Project:saucy_havana_keystone_trunkDate of build:Fri, 28 Jun 2013 18:01:23 -0400Build duration:15 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 3 out of the last 5 builds failed.40ChangesManager instead of direct driverby ayoungedittests/test_backend_ldap.pyedittests/test_backend_kvs.pyedittests/test_migrate_nova_auth.pyedittests/test_backend.pyedittests/test_backend_templated.pyedittests/test_backend_memcache.pyedittests/test_backend_sql.pyeditkeystone/test.pyConsole Output[...truncated 4403 lines...]Package-Time: 219Source-Version: 1:2013.2+git201306281801~saucy-0ubuntu1Space: 8920Status: attemptedVersion: 1:2013.2+git201306281801~saucy-0ubuntu1Finished at 20130628-1815Build needed 00:03:39, 8920k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'keystone_2013.2+git201306281801~saucy-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'keystone_2013.2+git201306281801~saucy-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 3bc661a8a79c2d86c83b8a74184bb8dc62b2aa40..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/keystone/havana keystonedch -b -D saucy --newversion 1:2013.2+git201306281801~saucy-0ubuntu1 Automated Ubuntu testing build:dch -a [431cecb] Manager instead of direct driverdch -a [eb1b5ea] check for constraint before droppingdch -a [911c315] Stop passing context to managers (bug 1194938)dch -a [793b8eb] Clean up keystone-all.rstdch -a [600c38b] LDAP list group users not fail if user entry deleteddch -a [f79ccf4] Do not raise NEW exceptionsdebcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC keystone_2013.2+git201306281801~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpey85qn/keystone/debian/controlsbuild -d saucy-havana -n -A keystone_2013.2+git201306281801~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'keystone_2013.2+git201306281801~saucy-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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'keystone_2013.2+git201306281801~saucy-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: saucy_havana_nova_trunk #308

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/308/Project:saucy_havana_nova_trunkDate of build:Fri, 28 Jun 2013 18:33:20 -0400Build duration:33 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesPort flavor_disabled extension to v3 API Part 1by akornienkoaddnova/api/openstack/compute/plugins/v3/flavor_disabled.pyaddnova/tests/api/openstack/compute/plugins/v3/test_flavor_disabled.pyConsole Output[...truncated 16859 lines...]dch -a [17de856] Baremetal_deploy_helper error message formatting.dch -a [3689771] Cells: Pass object for start/stopdch -a [c32a6d5] Add AggregateCoreFilterdch -a [f3a6de6] Add AggregateRamFilterdch -a [c0ca847] Retry quota_reserve on DBDeadlockdch -a [344849f] Sync db.models.Quota* with migrations.dch -a [10db612] Allow scheduler manager NoValidHost exception to pass over RPCdch -a [7503798] Clean up scheduler testsdch -a [8f64193] No support for double nested 64 bit guest using VCDriverdch -a [c43f515] Add tests for libvirt's reboot functionalitydch -a [2402055] Check the instance ID before creating itdch -a [e387e7b] Log xml in libvirt _create_domain failuresdch -a [645c2d3] Accept is_public=None when listing all flavorsdch -a [eaf5011] Port server_diagnostics extension to v3 API Part1dch -a [b45d5d6] Fix the ServerPasswordController class doc stringdch -a [6515e01] Port cells extension to v3 API Part 1dch -a [73f7155] Organize limits units and per-units constantsdch -a [f683831] Port flavors core API to v3 treedch -a [90da2c6] Change resource links when url has no project iddch -a [cf472da] port agenINFO:root:Destroying schroot.t API into v3 part1dch -a [39e8f5b] Cells: Add support for global cinderdch -a [614b209] Adds v3 API extension discovery filteringdch -a [6caadd1] Adds support for the Indigo Virtual Switch (IVS)debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201306281834~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmp51m83N/nova/debian/controlsbuild -d saucy-havana -n -A nova_2013.2+git201306281834~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306281834~saucy-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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306281834~saucy-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: saucy_havana_nova_trunk #309

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/309/Project:saucy_havana_nova_trunkDate of build:Fri, 28 Jun 2013 19:06:34 -0400Build duration:18 minBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesPort flavor_disabled extension to v3 API Part 2by akornienkoeditetc/nova/policy.jsoneditnova/tests/api/openstack/compute/plugins/v3/test_flavor_disabled.pyeditsetup.cfgeditnova/tests/fake_policy.pyeditnova/api/openstack/compute/plugins/v3/flavor_disabled.pyConsole Output[...truncated 16863 lines...]dch -a [17de856] Baremetal_deploy_helper error message formatting.dch -a [3689771] Cells: Pass object for start/stopdch -a [c32a6d5] Add AggregateCoreFilterdch -a [f3a6de6] Add AggregateRamFilterdch -a [c0ca847] Retry quota_reserve on DBDeadlockdch -a [344849f] Sync db.models.Quota* with migrations.dch -a [10db612] Allow scheduler manager NoValidHost exception to pass over RPCdch -a [7503798] Clean up scheduler testsdch -a [8f64193] No support for double nested 64 bit guest using VCDriverdch -a [c43f515] Add tests for libvirt's reboot functionalitydch -a [2402055] Check the instance ID before creating itdch -a [e387e7b] Log xml in libvirt _create_domain failuresdch -a [645c2d3] Accept is_public=None when listing all flavorsdch -a [eaf5011] Port server_diagnostics extension to v3 API Part1dch -a [b45d5d6] Fix the ServerPasswordController class doc stringdch -a [6515e01] Port cells extension to v3 API Part 1dch -a [73f7155] Organize limits units and per-units constantsdch -a [f683831] Port flavors core API to v3 treedch -a [90da2c6] Change resINFO:root:Destroying schroot.ource links when url has no project iddch -a [cf472da] port agent API into v3 part1dch -a [39e8f5b] Cells: Add support for global cinderdch -a [614b209] Adds v3 API extension discovery filteringdch -a [6caadd1] Adds support for the Indigo Virtual Switch (IVS)debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201306281907~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpSbjhjg/nova/debian/controlsbuild -d saucy-havana -n -A nova_2013.2+git201306281907~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306281907~saucy-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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306281907~saucy-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_havana_quantum_trunk #248

2013-06-28 Thread openstack-testing-bot
Title: precise_havana_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_quantum_trunk/248/Project:precise_havana_quantum_trunkDate of build:Fri, 28 Jun 2013 20:02:21 -0400Build duration:57 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesImported Translations from Transifexby Jenkinseditquantum/locale/ka_GE/LC_MESSAGES/quantum.poeditquantum/locale/ru/LC_MESSAGES/quantum.poaddquantum/locale/pl_PL/LC_MESSAGES/quantum.poeditquantum/locale/da/LC_MESSAGES/quantum.poeditquantum/locale/ro/LC_MESSAGES/quantum.poeditquantum/locale/de/LC_MESSAGES/quantum.poeditquantum/locale/quantum.poteditquantum/locale/pt_BR/LC_MESSAGES/quantum.poeditquantum/locale/it/LC_MESSAGES/quantum.poeditquantum/locale/vi_VN/LC_MESSAGES/quantum.poeditquantum/locale/fi_FI/LC_MESSAGES/quantum.poeditquantum/locale/cs/LC_MESSAGES/quantum.poaddquantum/locale/sl_SI/LC_MESSAGES/quantum.poeditquantum/locale/zh_CN/LC_MESSAGES/quantum.poeditquantum/locale/fr/LC_MESSAGES/quantum.poeditquantum/locale/bg_BG/LC_MESSAGES/quantum.poeditquantum/locale/es/LC_MESSAGES/quantum.poeditquantum/locale/ja/LC_MESSAGES/quantum.poeditquantum/locale/zh_TW/LC_MESSAGES/quantum.poeditquantum/locale/ko_KR/LC_MESSAGES/quantum.poConsole Output[...truncated 1201 lines...]hard linking tools/check_i18n_test_case.txt -> quantum-2013.2/toolshard linking tools/clean.sh -> quantum-2013.2/toolshard linking tools/i18n_cfg.py -> quantum-2013.2/toolshard linking tools/install_venv.py -> quantum-2013.2/toolshard linking tools/install_venv_common.py -> quantum-2013.2/toolshard linking tools/patch_tox_venv.py -> quantum-2013.2/toolshard linking tools/with_venv.sh -> quantum-2013.2/toolscopying setup.cfg -> quantum-2013.2Writing quantum-2013.2/setup.cfgcreating distCreating tar archiveremoving 'quantum-2013.2' (and everything under it)DEBUG:root:Derived package version from tarball: 2013.2INFO:root:Building package using /tmp/tmpJDeWrl/quantum_2013.2+git201306282002~precise.orig.tar.gzINFO:root:Generating git changelog entries for this packageDEBUG:root:['git', 'log', '-n1', '--no-merges', '--pretty=format:%H']DEBUG:root:d2dc4332b0987963d9238f82dbccb3f76c52858cINFO:root:Detected previous commit - readingDEBUG:root:['git', 'log', '2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD', '--no-merges', '--pretty=format:[%h] %s']INFO:root:Branching main packaging branch from launchpadDEBUG:root:['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']bzr: ERROR: Not a branch: "bzr+ssh://bazaar.launchpad.net/~ubuntu-server-dev/quantum/havana/".ERROR:root:Error occurred during package creation/build: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3ERROR:root:Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/quantum/havana quantumTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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: saucy_havana_quantum_trunk #186

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_quantum_trunk/186/Project:saucy_havana_quantum_trunkDate of build:Fri, 28 Jun 2013 20:01:53 -0400Build duration:1 min 42 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesImported Translations from Transifexby Jenkinseditquantum/locale/zh_TW/LC_MESSAGES/quantum.poaddquantum/locale/sl_SI/LC_MESSAGES/quantum.poeditquantum/locale/de/LC_MESSAGES/quantum.poeditquantum/locale/ro/LC_MESSAGES/quantum.poeditquantum/locale/da/LC_MESSAGES/quantum.poeditquantum/locale/it/LC_MESSAGES/quantum.poeditquantum/locale/ja/LC_MESSAGES/quantum.poeditquantum/locale/zh_CN/LC_MESSAGES/quantum.poeditquantum/locale/ru/LC_MESSAGES/quantum.poeditquantum/locale/cs/LC_MESSAGES/quantum.poeditquantum/locale/pt_BR/LC_MESSAGES/quantum.poeditquantum/locale/fr/LC_MESSAGES/quantum.poeditquantum/locale/vi_VN/LC_MESSAGES/quantum.poeditquantum/locale/bg_BG/LC_MESSAGES/quantum.poeditquantum/locale/fi_FI/LC_MESSAGES/quantum.poaddquantum/locale/pl_PL/LC_MESSAGES/quantum.poeditquantum/locale/ka_GE/LC_MESSAGES/quantum.poeditquantum/locale/es/LC_MESSAGES/quantum.poeditquantum/locale/ko_KR/LC_MESSAGES/quantum.poeditquantum/locale/quantum.potConsole Output[...truncated 1393 lines...]hard linking tools/check_i18n_test_case.txt -> quantum-2013.2/toolshard linking tools/clean.sh -> quantum-2013.2/toolshard linking tools/i18n_cfg.py -> quantum-2013.2/toolshard linking tools/install_venv.py -> quantum-2013.2/toolshard linking tools/install_venv_common.py -> quantum-2013.2/toolshard linking tools/patch_tox_venv.py -> quantum-2013.2/toolshard linking tools/with_venv.sh -> quantum-2013.2/toolscopying setup.cfg -> quantum-2013.2Writing quantum-2013.2/setup.cfgcreating distCreating tar archiveremoving 'quantum-2013.2' (and everything under it)DEBUG:root:Derived package version from tarball: 2013.2INFO:root:Building package using /tmp/tmpYJyXX9/quantum_2013.2+git201306282002~saucy.orig.tar.gzINFO:root:Generating git changelog entries for this packageDEBUG:root:['git', 'log', '-n1', '--no-merges', '--pretty=format:%H']DEBUG:root:d2dc4332b0987963d9238f82dbccb3f76c52858cINFO:root:Detected previous commit - readingDEBUG:root:['git', 'log', '2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD', '--no-merges', '--pretty=format:[%h] %s']INFO:root:Branching main packaging branch from launchpadDEBUG:root:['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']bzr: ERROR: Not a branch: "bzr+ssh://bazaar.launchpad.net/~ubuntu-server-dev/quantum/havana/".ERROR:root:Error occurred during package creation/build: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3ERROR:root:Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 2775a8a5677485d44d3b7a00bb90af469d6f110c..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~ubuntu-server-dev/quantum/havana quantumTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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: saucy_havana_nova_trunk #310

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/310/Project:saucy_havana_nova_trunkDate of build:Fri, 28 Jun 2013 20:03:19 -0400Build duration:9 min 30 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesReport the az based on the value in the instance table.by philip.dayeditnova/availability_zones.pyeditnova/tests/api/openstack/compute/contrib/test_availability_zone.pyeditnova/tests/api/openstack/compute/contrib/test_extended_availability_zone.pyeditnova/tests/api/openstack/fakes.pyeditnova/api/openstack/compute/contrib/extended_availability_zone.pyFix sqlalchemy utils.by yzveryanskyyeditnova/db/sqlalchemy/utils.pyeditnova/tests/db/test_migration_utils.pyConsole Output[...truncated 16868 lines...]dch -a [17de856] Baremetal_deploy_helper error message formatting.dch -a [3689771] Cells: Pass object for start/stopdch -a [c32a6d5] Add AggregateCoreFilterdch -a [f3a6de6] Add AggregateRamFilterdch -a [c0ca847] Retry quota_reserve on DBDeadlockdch -a [344849f] Sync db.models.Quota* with migrations.dch -a [10db612] Allow scheduler manager NoValidHost exception to pass over RPCdch -a [7503798] Clean up scheduler testsdch -a [8f64193] No support for double nested 64 bit guest using VCDriverdch -a [c43f515] Add tests for libvirt's reboot functionalitydch -a [2402055] Check the instance ID before creating itdch -a [e387e7b] Log xml in libvirt _create_domain failuresdch -a [645c2d3] Accept is_public=None when listing all flavorsdch -a [eaf5011] Port server_diagnostics extension to v3 API Part1dch -a [b45d5d6] Fix the ServerPasswordController class doc stringdch -a [6515e01] Port cells extension to v3 API Part 1dch -a [73f7155] Organize liINFO:root:Destroying schroot.mits units and per-units constantsdch -a [f683831] Port flavors core API to v3 treedch -a [90da2c6] Change resource links when url has no project iddch -a [cf472da] port agent API into v3 part1dch -a [39e8f5b] Cells: Add support for global cinderdch -a [614b209] Adds v3 API extension discovery filteringdch -a [6caadd1] Adds support for the Indigo Virtual Switch (IVS)debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201306282004~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmpLV1Dvn/nova/debian/controlsbuild -d saucy-havana -n -A nova_2013.2+git201306282004~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306282004~saucy-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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306282004~saucy-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_havana_quantum_trunk #249

2013-06-28 Thread openstack-testing-bot
Title: precise_havana_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_havana_quantum_trunk/249/Project:precise_havana_quantum_trunkDate of build:Fri, 28 Jun 2013 22:31:15 -0400Build duration:26 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesDeprecate enable_tunneling in the OVS agentby kmesteryeditquantum/tests/unit/openvswitch/test_ovs_quantum_agent.pyeditetc/quantum/plugins/openvswitch/ovs_quantum_plugin.inieditquantum/plugins/openvswitch/agent/ovs_quantum_agent.pyConsole Output[...truncated 1194 lines...]hard linking quantum/tests/unit/services/loadbalancer/drivers/haproxy/test_namespace_driver.py -> quantum-2013.2/quantum/tests/unit/services/loadbalancer/drivers/haproxyhard linking quantum/tests/unit/services/loadbalancer/drivers/haproxy/test_plugin_driver.py -> quantum-2013.2/quantum/tests/unit/services/loadbalancer/drivers/haproxyhard linking quantum/tests/var/ca.crt -> quantum-2013.2/quantum/tests/varhard linking quantum/tests/var/certificate.crt -> quantum-2013.2/quantum/tests/varhard linking quantum/tests/var/privatekey.key -> quantum-2013.2/quantum/tests/varhard linking tools/build_debs.sh -> quantum-2013.2/toolshard linking tools/check_i18n.py -> quantum-2013.2/toolshard linking tools/check_i18n_test_case.txt -> quantum-2013.2/toolshard linking tools/clean.sh -> quantum-2013.2/toolshard linking tools/i18n_cfg.py -> quantum-2013.2/toolshard linking tools/install_venv.py -> quantum-2013.2/toolshard linking tools/install_venv_common.py -> quantum-2013.2/toolshard linking tools/patch_tox_venv.py -> quantum-2013.2/toolshard linking tools/with_venv.sh -> quantum-2013.2/toolscopying setup.cfg -> quantum-2013.2Writing quantum-2013.2/setup.cfgcreating distCreating tar archiveremoving 'quantum-2013.2' (and everything under it)DEBUG:root:Derived package version from tarball: 2013.2INFO:root:Building package using /tmp/tmpXhnYL1/quantum_2013.2+git201306282231~precise.orig.tar.gzINFO:root:Branching packaging branch from lp:~ubuntu-server-dev/quantum/havanaDEBUG:root:['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']bzr: ERROR: Not a branch: "bzr+ssh://bazaar.launchpad.net/~ubuntu-server-dev/quantum/havana/".ERROR:root:Error occurred during package creation/build: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3ERROR:root:Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistbzr branch lp:~ubuntu-server-dev/quantum/havana quantumTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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: saucy_havana_quantum_trunk #187

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_quantum_trunk/187/Project:saucy_havana_quantum_trunkDate of build:Fri, 28 Jun 2013 22:31:15 -0400Build duration:36 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesDeprecate enable_tunneling in the OVS agentby kmesteryeditetc/quantum/plugins/openvswitch/ovs_quantum_plugin.inieditquantum/tests/unit/openvswitch/test_ovs_quantum_agent.pyeditquantum/plugins/openvswitch/agent/ovs_quantum_agent.pyConsole Output[...truncated 1386 lines...]hard linking quantum/tests/unit/services/loadbalancer/drivers/haproxy/test_namespace_driver.py -> quantum-2013.2/quantum/tests/unit/services/loadbalancer/drivers/haproxyhard linking quantum/tests/unit/services/loadbalancer/drivers/haproxy/test_plugin_driver.py -> quantum-2013.2/quantum/tests/unit/services/loadbalancer/drivers/haproxyhard linking quantum/tests/var/ca.crt -> quantum-2013.2/quantum/tests/varhard linking quantum/tests/var/certificate.crt -> quantum-2013.2/quantum/tests/varhard linking quantum/tests/var/privatekey.key -> quantum-2013.2/quantum/tests/varhard linking tools/build_debs.sh -> quantum-2013.2/toolshard linking tools/check_i18n.py -> quantum-2013.2/toolshard linking tools/check_i18n_test_case.txt -> quantum-2013.2/toolshard linking tools/clean.sh -> quantum-2013.2/toolshard linking tools/i18n_cfg.py -> quantum-2013.2/toolshard linking tools/install_venv.py -> quantum-2013.2/toolshard linking tools/install_venv_common.py -> quantum-2013.2/toolshard linking tools/patch_tox_venv.py -> quantum-2013.2/toolshard linking tools/with_venv.sh -> quantum-2013.2/toolscopying setup.cfg -> quantum-2013.2Writing quantum-2013.2/setup.cfgcreating distCreating tar archiveremoving 'quantum-2013.2' (and everything under it)DEBUG:root:Derived package version from tarball: 2013.2INFO:root:Building package using /tmp/tmp92fczV/quantum_2013.2+git201306282231~saucy.orig.tar.gzINFO:root:Branching packaging branch from lp:~ubuntu-server-dev/quantum/havanaDEBUG:root:['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']bzr: ERROR: Not a branch: "bzr+ssh://bazaar.launchpad.net/~ubuntu-server-dev/quantum/havana/".ERROR:root:Error occurred during package creation/build: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3ERROR:root:Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.apt-get -y install python-setuptoolspython setup.py sdistbzr branch lp:~ubuntu-server-dev/quantum/havana quantumTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['bzr', 'branch', 'lp:~ubuntu-server-dev/quantum/havana', 'quantum']' 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: saucy_havana_nova_trunk #311

2013-06-28 Thread openstack-testing-bot
Title: saucy_havana_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/saucy_havana_nova_trunk/311/Project:saucy_havana_nova_trunkDate of build:Sat, 29 Jun 2013 01:01:22 -0400Build duration:7 min 53 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesImported Translations from Transifexby Jenkinseditnova/locale/bg_BG/LC_MESSAGES/nova.poeditnova/locale/tr/LC_MESSAGES/nova.poeditnova/locale/fi_FI/LC_MESSAGES/nova.poeditnova/locale/vi_VN/LC_MESSAGES/nova.poeditnova/locale/sw_KE/LC_MESSAGES/nova.poeditnova/locale/id/LC_MESSAGES/nova.poeditnova/locale/pt_BR/LC_MESSAGES/nova.poeditnova/locale/ca/LC_MESSAGES/nova.poeditnova/locale/ru/LC_MESSAGES/nova.poeditnova/locale/ko/LC_MESSAGES/nova.poeditnova/locale/cs/LC_MESSAGES/nova.poeditnova/locale/ru_RU/LC_MESSAGES/nova.poeditnova/locale/es/LC_MESSAGES/nova.poeditnova/locale/ja/LC_MESSAGES/nova.poaddnova/locale/pl_PL/LC_MESSAGES/nova.poeditnova/locale/nl_NL/LC_MESSAGES/nova.poeditnova/locale/zh_HK/LC_MESSAGES/nova.poeditnova/locale/hr/LC_MESSAGES/nova.poeditnova/locale/en_US/LC_MESSAGES/nova.poeditnova/locale/ro/LC_MESSAGES/nova.poeditnova/locale/ms/LC_MESSAGES/nova.poeditnova/locale/ko_KR/LC_MESSAGES/nova.poeditnova/locale/fr/LC_MESSAGES/nova.poeditnova/locale/en_GB/LC_MESSAGES/nova.poeditnova/locale/uk/LC_MESSAGES/nova.poaddnova/locale/sl_SI/LC_MESSAGES/nova.poeditnova/locale/da/LC_MESSAGES/nova.poeditnova/locale/ka_GE/LC_MESSAGES/nova.poeditnova/locale/zh_TW/LC_MESSAGES/nova.poeditnova/locale/it/LC_MESSAGES/nova.poeditnova/locale/de/LC_MESSAGES/nova.poeditnova/locale/en_AU/LC_MESSAGES/nova.poeditnova/locale/hu/LC_MESSAGES/nova.poeditnova/locale/tr_TR/LC_MESSAGES/nova.poeditnova/locale/tl/LC_MESSAGES/nova.poeditnova/locale/it_IT/LC_MESSAGES/nova.poeditnova/locale/bs/LC_MESSAGES/nova.poeditnova/locale/nova.poteditnova/locale/zh_CN/LC_MESSAGES/nova.poeditnova/locale/pt/LC_MESSAGES/nova.poeditnova/locale/nb/LC_MESSAGES/nova.poConsole Output[...truncated 16883 lines...]dch -a [17de856] Baremetal_deploy_helper error message formatting.dch -a [3689771] Cells: Pass object for start/stopdch -a [c32a6d5] Add AggregateCoreFilterdch -a [f3a6de6] Add AggregateRamFilterdch -a [c0ca847] Retry quota_reserve on DBDeadlockdch -a [344849f] Sync db.models.Quota* with migrations.dch -a [10db612] Allow scheduler manager NoValidHost exception to pass over RPCdch -a [7503798] Clean up scheduler testsdch -a [8f64193] No support for double nested 64 bit guest using VCDriverdch -a [c43f515] Add tests for libvirt's reboot functionalitydch -a [2402055] Check the instance ID before creating itdch -a [e387e7b] Log xml in libvirt _create_domain failuresdch -a [645c2d3] Accept is_public=None when listing all flavorsdch -a [eaf5011] Port server_diagnostics extension to v3 API Part1dch -a [b45d5d6] Fix the ServerPasswordController class doc stringdch -a [6515e01] Port cells eINFO:root:Destroying schroot.xtension to v3 API Part 1dch -a [73f7155] Organize limits units and per-units constantsdch -a [f683831] Port flavors core API to v3 treedch -a [90da2c6] Change resource links when url has no project iddch -a [cf472da] port agent API into v3 part1dch -a [39e8f5b] Cells: Add support for global cinderdch -a [614b209] Adds v3 API extension discovery filteringdch -a [6caadd1] Adds support for the Indigo Virtual Switch (IVS)debcommitapt-get -y install equivs devscripts bzr bzr-builddeb git quilt gnupg piupartsbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC nova_2013.2+git201306290102~saucy-0ubuntu1_source.changesmk-build-deps -i -r -t apt-get -y /tmp/tmp3cebkE/nova/debian/controlsbuild -d saucy-havana -n -A nova_2013.2+git201306290102~saucy-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306290102~saucy-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.getcwd(), 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 139, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'saucy-havana', '-n', '-A', 'nova_2013.2+git201306290102~saucy-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 :