Re: [Openstack] Quantim duplicate subnet creation

2013-01-17 Thread Aaron Rosen
Hi,

Yup this is definitely possible. The reason why this isn't set by default
is that some distros don't ship kernels that build with CONFIG_NET_NS=y or
their iproute2 package is to outdated to support linux namespaces.  Also,
until recently nova's metadata service didn't support overlapping ips. If
you are running ubuntu 12.04 you should be able to set:

Q_ALLOW_OVERLAPPING_IP=True

in your localrc to enable this.

or edit your quantum.conf here and restart quantum to enable overlapping
ips.

# Enable or disable overlapping IPs for subnets
# Attention: the following parameter MUST be set to False if Quantum is
# being used in conjunction with nova security groups and/or metadata
service.
# allow_overlapping_ips = False


Aaron

p.s: I don't think this will work in a flat network setup though since
there is no way to isolate that. What plugin are you using?
 I have the following networks in a flat network setup.


On Thu, Jan 17, 2013 at 2:52 AM, Balamurugan V G balamuruga...@gmail.comwrote:

 Hi,

 Is there a way to create a duplicate network/subnet for tenant in quantum.
 Basically for a tenant, I want to have some instances(GroupA) share a
 subnet and another set of instances(GroupB) share the same(duplicate)
 subnet but GroupA and GroupB should be isolated. I have labnet which is the
 flat network to which one instance from each group is assigned for external
 connectivity. Then I want to have two private networks private1 and
 private2 both sharing the same subnet but I was to assign some instances to
 private1 and some in private2.

 I have the following networks in a flat network setup.

 root@openstack:~# quantum subnet-list

 +--+--+--+--+
 | id   | name | cidr |
 allocation_pools |

 +--+--+--+--+
 | abb62a74-ad15-452c-857f-ee0a1b388ede |  | 192.168.168.0/24 |
 {start: 192.168.168.2, end: 192.168.168.254} |
 | eedc0c12-c3ed-42ce-a860-692e766087a2 |  | 10.5.12.0/24 |
 {start: 10.5.12.21, end: 10.5.12.25} |

 +--+--+--+--+
 root@openstack:~#


 Now, the following gets denied.

 root@openstack:~# quantum subnet-create --tenant-id
 7cda178971e84c5194c8531bf4f229d7  private2 192.168.168.0/24
 Invalid input for operation: Requested subnet with cidr: 192.168.168.0/24for 
 network: 64ec75d6-0c6f-44e1-a268-b573324c4160 overlaps with another
 subnet.
 root@openstack:~#

 I understand that a duplicate network with a tenant is not a common
 scenario and perhaps by design its not allowed.

 But there could be cases like I mentioned.

 Strangely, I am not allowed to create the duplicate network even across
 tenants. Atleast this should be allowed.

 BTW, I am running a single node Devstack.

 Regards,
 Balu

 ___
 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] Quantim duplicate subnet creation

2013-01-17 Thread Robert van Leeuwen
 Is there a way to create a duplicate network/subnet for tenant in quantum. 
 Basically for a tenant, I want to have 
 some instances(GroupA) share a subnet and another set of instances(GroupB) 
 share the same(duplicate) 
 subnet but GroupA and GroupB should be isolated.

Hi,

You will need to have network namespace support to be able to allow this.
If you have this you can enable this in the quantum.conf: allow_overlapping_ips 
= True

For the specifics:
http://docs.openstack.org/trunk/openstack-network/admin/content/ch_limitations.html

Cheers,
Robert van Leeuwen
___
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] Quantim duplicate subnet creation

2013-01-17 Thread Balamurugan V G
Thanks a lot Aaron and Robert. That worked like a charm!

I set the 'allow_overlapping_ips = True' in quantum.conf and rebooted the
stack(wish there was an easy cli to restart individual projects/services or
may be I dont know if one exists).

And while still in a Flat network setup I could create the duplicate
networks.

root@openstack:~# nova list
+--+--++---+
| ID   | Name | Status |
Networks  |
+--+--++---+
| f4762c79-e322-4ec5-8f62-ab2cbe156363 | A1 | ACTIVE | labnet=10.5.12.24;
private1=192.168.168.4 |
| 4bac873f-e081-460b-8bf8-95f8719081c7  | A2 | ACTIVE | labnet=10.5.12.22;
private1=192.168.168.3 |
| d7e47567-81eb-48a3-a2ca-63e1b5df8a08 | B1 | ACTIVE | labnet=10.5.12.23;
private2=192.168.168.3 |
+--+--++---+
root@openstack:~#

Instances A1 and* *A2 can communicate over the private network while B1
cannot talk to A2 as desired and it doesnt complain about conflicting IP
either.

I am using the
quantum.plugins.openvswitch.ovs_quantum_plugin.OVSQuantumPluginV2 plugin.

Regards,
Balu




On Thu, Jan 17, 2013 at 2:17 PM, Aaron Rosen aro...@nicira.com wrote:

 Hi,

 Yup this is definitely possible. The reason why this isn't set by default
 is that some distros don't ship kernels that build with CONFIG_NET_NS=y or
 their iproute2 package is to outdated to support linux namespaces.  Also,
 until recently nova's metadata service didn't support overlapping ips. If
 you are running ubuntu 12.04 you should be able to set:

 Q_ALLOW_OVERLAPPING_IP=True

 in your localrc to enable this.

 or edit your quantum.conf here and restart quantum to enable overlapping
 ips.

 # Enable or disable overlapping IPs for subnets
 # Attention: the following parameter MUST be set to False if Quantum is
 # being used in conjunction with nova security groups and/or metadata
 service.
 # allow_overlapping_ips = False


 Aaron

 p.s: I don't think this will work in a flat network setup though since
 there is no way to isolate that. What plugin are you using?
  I have the following networks in a flat network setup.


 On Thu, Jan 17, 2013 at 2:52 AM, Balamurugan V G 
 balamuruga...@gmail.comwrote:

 Hi,

 Is there a way to create a duplicate network/subnet for tenant in
 quantum. Basically for a tenant, I want to have some instances(GroupA)
 share a subnet and another set of instances(GroupB) share the
 same(duplicate) subnet but GroupA and GroupB should be isolated. I have
 labnet which is the flat network to which one instance from each group is
 assigned for external connectivity. Then I want to have two private
 networks private1 and private2 both sharing the same subnet but I was to
 assign some instances to private1 and some in private2.

 I have the following networks in a flat network setup.

 root@openstack:~# quantum subnet-list

 +--+--+--+--+
 | id   | name | cidr |
 allocation_pools |

 +--+--+--+--+
 | abb62a74-ad15-452c-857f-ee0a1b388ede |  | 192.168.168.0/24 |
 {start: 192.168.168.2, end: 192.168.168.254} |
 | eedc0c12-c3ed-42ce-a860-692e766087a2 |  | 10.5.12.0/24 |
 {start: 10.5.12.21, end: 10.5.12.25} |

 +--+--+--+--+
 root@openstack:~#


 Now, the following gets denied.

 root@openstack:~# quantum subnet-create --tenant-id
 7cda178971e84c5194c8531bf4f229d7  private2 192.168.168.0/24
 Invalid input for operation: Requested subnet with cidr: 192.168.168.0/24for 
 network: 64ec75d6-0c6f-44e1-a268-b573324c4160 overlaps with another
 subnet.
 root@openstack:~#

 I understand that a duplicate network with a tenant is not a common
 scenario and perhaps by design its not allowed.

 But there could be cases like I mentioned.

 Strangely, I am not allowed to create the duplicate network even across
 tenants. Atleast this should be allowed.

 BTW, I am running a single node Devstack.

 Regards,
 Balu

 ___
 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   : 

[Openstack] doc for openstack deployment using puppet

2013-01-17 Thread haynes.davis
Hi,

Please help me with any tested doc  for openstack deployment using puppet.

regards,
Haynes Davis



This message is for the designated recipient only and may contain privileged, 
proprietary, or otherwise private information. If you have received it in 
error, please notify the sender immediately and delete the original. Any other 
use of the e-mail by you is prohibited.

Where allowed by local law, electronic communications with Accenture and its 
affiliates, including e-mail and instant messaging (including content), may be 
scanned by our systems for the purposes of information security and assessment 
of internal compliance with Accenture policy.

__

www.accenture.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] doc for openstack deployment using puppet

2013-01-17 Thread JuanFra Rodriguez Cardoso
Hi:

Check out the following url:
https://github.com/puppetlabs/puppetlabs-openstack

Best,
JuanFra

2013/1/17 haynes.da...@accenture.com

  Hi,

 ** **

 Please help me with any tested doc  for openstack deployment using puppet.
 

 ** **

 regards,

 Haynes Davis

 ** **

 --
 This message is for the designated recipient only and may contain
 privileged, proprietary, or otherwise private information. If you have
 received it in error, please notify the sender immediately and delete the
 original. Any other use of the e-mail by you is prohibited.

 Where allowed by local law, electronic communications with Accenture and
 its affiliates, including e-mail and instant messaging (including content),
 may be scanned by our systems for the purposes of information security and
 assessment of internal compliance with Accenture policy.


 __

 www.accenture.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




-- 
JuanFra
___
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] doc for openstack deployment using puppet

2013-01-17 Thread Syed Armani
Hi Haynes,


You may want to have a look at this document
https://github.com/freizeit/puppet-folsom-ubuntu


-- Syed Armani

On Thu, Jan 17, 2013 at 3:11 PM, haynes.da...@accenture.com wrote:

  Hi,

 ** **

 Please help me with any tested doc  for openstack deployment using puppet.
 

 ** **

 regards,

 Haynes Davis

 ** **

 --
 This message is for the designated recipient only and may contain
 privileged, proprietary, or otherwise private information. If you have
 received it in error, please notify the sender immediately and delete the
 original. Any other use of the e-mail by you is prohibited.

 Where allowed by local law, electronic communications with Accenture and
 its affiliates, including e-mail and instant messaging (including content),
 may be scanned by our systems for the purposes of information security and
 assessment of internal compliance with Accenture policy.


 __

 www.accenture.com

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


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


[Openstack] [OpenStack]

2013-01-17 Thread Sujay M
Hi all,

I have set up a proxy server on 10.0.2.15 and 4 storage nodes on
10.0.2.16-19

My proxy-server configuration file

root@ubuntu:~# /etc/swift/proxy-server.conf [DEFAULT]
bind_port = 8080
user = ug26
workers = 8

[pipeline:main]
pipeline = healthcheck cache tempauth proxy-server

[app:proxy-server]
use = egg:swift#proxy
allow_account_management = true
account_autocreate = true

[filter:tempauth]
use = egg:swift#tempauth
user_admin_admin = admin .admin .reseller_admin
user_test_tester = testing .admin
user_test2_tester2 = testing2 .admin
user_test_tester3 = testing3

[filter:healthcheck]
use = egg:swift#healthcheck

[filter:cache]
use = egg:swift#memcache


I am getting a different auth token each time i try to get an auth url

root@ubuntu:~# curl -k -v -H 'X-Storage-User: test:tester' -H
'X-Storage-Pass: testing' http://10.0.2.15:8080/auth/v1.0
* About to connect() to 10.0.2.15 port 8080 (#0)
*   Trying 10.0.2.15... connected
 GET /auth/v1.0 HTTP/1.1
 User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
 Host: 10.0.2.15:8080
 Accept: */*
 X-Storage-User: test:tester
 X-Storage-Pass: testing

 HTTP/1.1 200 OK
 X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test
 X-Storage-Token: AUTH_tkf673fe7a7fc5428398c53bc633f5ff5e
 X-Auth-Token: AUTH_tkf673fe7a7fc5428398c53bc633f5ff5e
 Content-Length: 0
 Date: Thu, 17 Jan 2013 10:44:03 GMT

* Connection #0 to host 10.0.2.15 left intact
* Closing connection #0
root@ubuntu:~# curl -k -v -H 'X-Storage-User: test:tester' -H
'X-Storage-Pass: testing' http://10.0.2.15:8080/auth/v1.0
* About to connect() to 10.0.2.15 port 8080 (#0)
*   Trying 10.0.2.15... connected
 GET /auth/v1.0 HTTP/1.1
 User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
 Host: 10.0.2.15:8080
 Accept: */*
 X-Storage-User: test:tester
 X-Storage-Pass: testing

 HTTP/1.1 200 OK
 X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test
 X-Storage-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
 X-Auth-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
 Content-Length: 0
 Date: Thu, 17 Jan 2013 10:44:06 GMT

* Connection #0 to host 10.0.2.15 left intact
* Closing connection #0


I am alos unable to GEt an account
root@ubuntu:~# curl -k -v -H 'X-Auth-Token: AUTH_
tke4fec7d8413d46df9eb867064e07ac83' http://10.0.2.15:8080/v1/AUTH_test
* About to connect() to 10.0.2.15 port 8080 (#0)
*   Trying 10.0.2.15... connected
 GET /v1/AUTH_test HTTP/1.1
 User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
 Host: 10.0.2.15:8080
 Accept: */*
 X-Auth-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83

 HTTP/1.1 401 Unauthorized
 Content-Length: 358
 Content-Type: text/html; charset=UTF-8
 Date: Thu, 17 Jan 2013 10:44:09 GMT

html
 head
  title401 Unauthorized/title
 /head
 body
  h1401 Unauthorized/h1
  This server could not verify that you are authorized to access the
document you requested. Either you supplied the wrong credentials (e.g.,
bad password), or your browser does not understand how to supply the
credentials required.br /br /



 /body
* Connection #0 to host 10.0.2.15 left intact
* Closing connection #0

Also if i do

ps -A | grep memcached  it is no returning anything. I think its a
problem with memcached.

please help me. Thanks in advance.


-- 
Best Regards,

Sujay M
Final year B.Tech
Computer Engineering
NITK Surathkal

contact: +918971897571
___
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] Question about Disk Setup of Nova Compute Node

2013-01-17 Thread Razique Mahroua
Thanks for the link !some amazing benches around :) Let's hope we'll have more details on the methodology, but some results are stunning
Razique Mahroua-Nuage  Corazique.mahr...@gmail.comTel: +33 9 72 37 94 15

Le 17 janv. 2013 à 01:54, Blair Bethwaite blair.bethwa...@gmail.com a écrit :On 17 January 2013 09:48, Sean Bigdatafun sean.bigdata...@gmail.com wrote:

IMO, it's always a tradeoff. I am just very curious how Amazon configures its EC2 hardware.

Good luck getting that information! You might be able to make some guesses from benchmark info though, there is plenty around. This post from Scalyr takes a great all round look at EC2 IO performance, and it's pretty recent data:http://blog.scalyr.com/2012/10/16/a-systematic-look-at-ec2-io/.

Personally, I would guess that for ephemeral drives they use either no RAID at all or RAID10, probably none though, especially as they don't advertise any reliability for these drives. The issue of rebuild performance in parity-based RAID configs and the effect it would have on guest performance would be a significant consideration. Having said that, it's difficult to find reports of ephemeral drive failures, and Amazon don't quote any failure rates themselves.

-- Cheers,~Blairo

___Mailing list: https://launchpad.net/~openstackPost to : openstack@lists.launchpad.netUnsubscribe : https://launchpad.net/~openstackMore 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] [OpenStack][Swift] Multiple Auth URL's for same account problem

2013-01-17 Thread Sujay M
Hi all,

I have set up a proxy server on 10.0.2.15 and 4 storage nodes on
10.0.2.16-19

My proxy-server configuration file

root@ubuntu:~# /etc/swift/proxy-server.conf [DEFAULT]
bind_port = 8080
user = ug26
workers = 8

[pipeline:main]
pipeline = healthcheck cache tempauth proxy-server

[app:proxy-server]
use = egg:swift#proxy
allow_account_management = true
account_autocreate = true

[filter:tempauth]
use = egg:swift#tempauth
user_admin_admin = admin .admin .reseller_admin
user_test_tester = testing .admin
user_test2_tester2 = testing2 .admin
user_test_tester3 = testing3

[filter:healthcheck]
use = egg:swift#healthcheck

[filter:cache]
use = egg:swift#memcache


I am getting a different auth token each time i try to get an auth url

root@ubuntu:~# curl -k -v -H 'X-Storage-User: test:tester' -H
'X-Storage-Pass: testing' http://10.0.2.15:8080/auth/v1.0
* About to connect() to 10.0.2.15 port 8080 (#0)
*   Trying 10.0.2.15... connected
 GET /auth/v1.0 HTTP/1.1
 User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
 Host: 10.0.2.15:8080
 Accept: */*
 X-Storage-User: test:tester
 X-Storage-Pass: testing

 HTTP/1.1 200 OK
 X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test
 X-Storage-Token: AUTH_tkf673fe7a7fc5428398c53bc633f5ff5e
 X-Auth-Token: AUTH_tkf673fe7a7fc5428398c53bc633f5ff5e
 Content-Length: 0
 Date: Thu, 17 Jan 2013 10:44:03 GMT

* Connection #0 to host 10.0.2.15 left intact
* Closing connection #0
root@ubuntu:~# curl -k -v -H 'X-Storage-User: test:tester' -H
'X-Storage-Pass: testing' http://10.0.2.15:8080/auth/v1.0
* About to connect() to 10.0.2.15 port 8080 (#0)
*   Trying 10.0.2.15... connected
 GET /auth/v1.0 HTTP/1.1
 User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
 Host: 10.0.2.15:8080
 Accept: */*
 X-Storage-User: test:tester
 X-Storage-Pass: testing

 HTTP/1.1 200 OK
 X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test
 X-Storage-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
 X-Auth-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
 Content-Length: 0
 Date: Thu, 17 Jan 2013 10:44:06 GMT

* Connection #0 to host 10.0.2.15 left intact
* Closing connection #0


I am alos unable to GEt an account
root@ubuntu:~# curl -k -v -H 'X-Auth-Token: AUTH_
tke4fec7d8413d46df9eb867064e07ac83' http://10.0.2.15:8080/v1/AUTH_test
* About to connect() to 10.0.2.15 port 8080 (#0)
*   Trying 10.0.2.15... connected
 GET /v1/AUTH_test HTTP/1.1
 User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
 Host: 10.0.2.15:8080
 Accept: */*
 X-Auth-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83

 HTTP/1.1 401 Unauthorized
 Content-Length: 358
 Content-Type: text/html; charset=UTF-8
 Date: Thu, 17 Jan 2013 10:44:09 GMT

html
 head
  title401 Unauthorized/title
 /head
 body
  h1401 Unauthorized/h1
  This server could not verify that you are authorized to access the
document you requested. Either you supplied the wrong credentials (e.g.,
bad password), or your browser does not understand how to supply the
credentials required.br /br /



 /body
* Connection #0 to host 10.0.2.15 left intact
* Closing connection #0

Also if i do

ps -A | grep memcached  it is no returning anything. I think its a
problem with memcached.

please help me. Thanks in advance.


-- 
Best Regards,

Sujay M
Final year B.Tech
Computer Engineering
NITK Surathkal

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


Re: [Openstack] [openstack-dev] [OpenStack]

2013-01-17 Thread Daniele Valeriani
Sujay,

If memcached isn't running the proxy server doesn't have a backend to store
auth tokens (and the cache section in your config becomes vain). The proxy
server then generates a new token for each new request.
This should be OK after memcached has started.

Daniele

Daniele


On 17 January 2013 10:54, Sujay M sujay@gmail.com wrote:

 Hi all,

 I have set up a proxy server on 10.0.2.15 and 4 storage nodes on
 10.0.2.16-19

 My proxy-server configuration file

 root@ubuntu:~# /etc/swift/proxy-server.conf [DEFAULT]
 bind_port = 8080
 user = ug26
 workers = 8

 [pipeline:main]
 pipeline = healthcheck cache tempauth proxy-server

 [app:proxy-server]
 use = egg:swift#proxy
 allow_account_management = true
 account_autocreate = true

 [filter:tempauth]
 use = egg:swift#tempauth
 user_admin_admin = admin .admin .reseller_admin
 user_test_tester = testing .admin
 user_test2_tester2 = testing2 .admin
 user_test_tester3 = testing3

 [filter:healthcheck]
 use = egg:swift#healthcheck

 [filter:cache]
 use = egg:swift#memcache


 I am getting a different auth token each time i try to get an auth url

 root@ubuntu:~# curl -k -v -H 'X-Storage-User: test:tester' -H
 'X-Storage-Pass: testing' http://10.0.2.15:8080/auth/v1.0
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /auth/v1.0 HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Storage-User: test:tester
  X-Storage-Pass: testing
 
  HTTP/1.1 200 OK
  X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test
  X-Storage-Token: AUTH_tkf673fe7a7fc5428398c53bc633f5ff5e
  X-Auth-Token: AUTH_tkf673fe7a7fc5428398c53bc633f5ff5e
  Content-Length: 0
  Date: Thu, 17 Jan 2013 10:44:03 GMT
 
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0
 root@ubuntu:~# curl -k -v -H 'X-Storage-User: test:tester' -H
 'X-Storage-Pass: testing' http://10.0.2.15:8080/auth/v1.0
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /auth/v1.0 HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Storage-User: test:tester
  X-Storage-Pass: testing
 
  HTTP/1.1 200 OK
  X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test
  X-Storage-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
  X-Auth-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
  Content-Length: 0
  Date: Thu, 17 Jan 2013 10:44:06 GMT
 
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0


 I am alos unable to GEt an account
 root@ubuntu:~# curl -k -v -H 'X-Auth-Token: AUTH_
 tke4fec7d8413d46df9eb867064e07ac83' http://10.0.2.15:8080/v1/AUTH_test
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /v1/AUTH_test HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Auth-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
 
  HTTP/1.1 401 Unauthorized
  Content-Length: 358
  Content-Type: text/html; charset=UTF-8
  Date: Thu, 17 Jan 2013 10:44:09 GMT
 
 html
  head
   title401 Unauthorized/title
  /head
  body
   h1401 Unauthorized/h1
   This server could not verify that you are authorized to access the
 document you requested. Either you supplied the wrong credentials (e.g.,
 bad password), or your browser does not understand how to supply the
 credentials required.br /br /



  /body
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0

 Also if i do

 ps -A | grep memcached  it is no returning anything. I think its a
 problem with memcached.

 please help me. Thanks in advance.


 --
 Best Regards,

 Sujay M
 Final year B.Tech
 Computer Engineering
 NITK Surathkal

 contact: +918971897571

 ___
 OpenStack-dev mailing list
 openstack-...@lists.openstack.org
 http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev


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


Re: [Openstack] [openstack-dev] [OpenStack]

2013-01-17 Thread Sujay M
Hi Daniele,

Thanks for the reply. I tried to start memcached using

service memcached start

but even after doing this the ps -A | grep memcached  returns nothing and
multiple tokens are generated


On 17 January 2013 16:33, Daniele Valeriani dani...@dvaleriani.net wrote:

 Sujay,

 If memcached isn't running the proxy server doesn't have a backend to
 store auth tokens (and the cache section in your config becomes vain). The
 proxy server then generates a new token for each new request.
 This should be OK after memcached has started.

 Daniele

 Daniele


 On 17 January 2013 10:54, Sujay M sujay@gmail.com wrote:

  Hi all,

 I have set up a proxy server on 10.0.2.15 and 4 storage nodes on
 10.0.2.16-19

 My proxy-server configuration file

 root@ubuntu:~# /etc/swift/proxy-server.conf [DEFAULT]
 bind_port = 8080
 user = ug26
 workers = 8

 [pipeline:main]
 pipeline = healthcheck cache tempauth proxy-server

 [app:proxy-server]
 use = egg:swift#proxy
 allow_account_management = true
 account_autocreate = true

 [filter:tempauth]
 use = egg:swift#tempauth
 user_admin_admin = admin .admin .reseller_admin
 user_test_tester = testing .admin
 user_test2_tester2 = testing2 .admin
 user_test_tester3 = testing3

 [filter:healthcheck]
 use = egg:swift#healthcheck

 [filter:cache]
 use = egg:swift#memcache


 I am getting a different auth token each time i try to get an auth url

 root@ubuntu:~# curl -k -v -H 'X-Storage-User: test:tester' -H
 'X-Storage-Pass: testing' http://10.0.2.15:8080/auth/v1.0
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /auth/v1.0 HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Storage-User: test:tester
  X-Storage-Pass: testing
 
  HTTP/1.1 200 OK
  X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test
  X-Storage-Token: AUTH_tkf673fe7a7fc5428398c53bc633f5ff5e
  X-Auth-Token: AUTH_tkf673fe7a7fc5428398c53bc633f5ff5e
  Content-Length: 0
  Date: Thu, 17 Jan 2013 10:44:03 GMT
 
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0
 root@ubuntu:~# curl -k -v -H 'X-Storage-User: test:tester' -H
 'X-Storage-Pass: testing' http://10.0.2.15:8080/auth/v1.0
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /auth/v1.0 HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Storage-User: test:tester
  X-Storage-Pass: testing
 
  HTTP/1.1 200 OK
  X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test
  X-Storage-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
  X-Auth-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
  Content-Length: 0
  Date: Thu, 17 Jan 2013 10:44:06 GMT
 
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0


 I am alos unable to GEt an account
 root@ubuntu:~# curl -k -v -H 'X-Auth-Token: AUTH_
 tke4fec7d8413d46df9eb867064e07ac83' http://10.0.2.15:8080/v1/AUTH_test
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /v1/AUTH_test HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Auth-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
 
  HTTP/1.1 401 Unauthorized
  Content-Length: 358
  Content-Type: text/html; charset=UTF-8
  Date: Thu, 17 Jan 2013 10:44:09 GMT
 
 html
  head
   title401 Unauthorized/title
  /head
  body
   h1401 Unauthorized/h1
   This server could not verify that you are authorized to access the
 document you requested. Either you supplied the wrong credentials (e.g.,
 bad password), or your browser does not understand how to supply the
 credentials required.br /br /



  /body
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0

 Also if i do

 ps -A | grep memcached  it is no returning anything. I think its a
 problem with memcached.

 please help me. Thanks in advance.


 --
 Best Regards,

 Sujay M
 Final year B.Tech
 Computer Engineering
 NITK Surathkal

 contact: +918971897571

 ___
 OpenStack-dev mailing list
 openstack-...@lists.openstack.org
 http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev



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




-- 
Best Regards,

Sujay M
Final year B.Tech
Computer Engineering
NITK Surathkal

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


Re: [Openstack] [openstack-dev] [OpenStack]

2013-01-17 Thread Daniele Valeriani
Sujay,

That means that memcached is still not running.
You should probably adjust your /etc/memcached.conf file and get it running.
Please refer to the memcached docs if you don't know where to start with
that.

Daniele

Daniele


On 17 January 2013 11:12, Sujay M sujay@gmail.com wrote:

 Hi Daniele,

 Thanks for the reply. I tried to start memcached using

 service memcached start

 but even after doing this the ps -A | grep memcached  returns nothing
 and multiple tokens are generated


 On 17 January 2013 16:33, Daniele Valeriani dani...@dvaleriani.netwrote:

 Sujay,

 If memcached isn't running the proxy server doesn't have a backend to
 store auth tokens (and the cache section in your config becomes vain). The
 proxy server then generates a new token for each new request.
 This should be OK after memcached has started.

 Daniele

 Daniele


 On 17 January 2013 10:54, Sujay M sujay@gmail.com wrote:

  Hi all,

 I have set up a proxy server on 10.0.2.15 and 4 storage nodes on
 10.0.2.16-19

 My proxy-server configuration file

 root@ubuntu:~# /etc/swift/proxy-server.conf [DEFAULT]
 bind_port = 8080
 user = ug26
 workers = 8

 [pipeline:main]
 pipeline = healthcheck cache tempauth proxy-server

 [app:proxy-server]
 use = egg:swift#proxy
 allow_account_management = true
 account_autocreate = true

 [filter:tempauth]
 use = egg:swift#tempauth
 user_admin_admin = admin .admin .reseller_admin
 user_test_tester = testing .admin
 user_test2_tester2 = testing2 .admin
 user_test_tester3 = testing3

 [filter:healthcheck]
 use = egg:swift#healthcheck

 [filter:cache]
 use = egg:swift#memcache


 I am getting a different auth token each time i try to get an auth url

 root@ubuntu:~# curl -k -v -H 'X-Storage-User: test:tester' -H
 'X-Storage-Pass: testing' http://10.0.2.15:8080/auth/v1.0
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /auth/v1.0 HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Storage-User: test:tester
  X-Storage-Pass: testing
 
  HTTP/1.1 200 OK
  X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test
  X-Storage-Token: AUTH_tkf673fe7a7fc5428398c53bc633f5ff5e
  X-Auth-Token: AUTH_tkf673fe7a7fc5428398c53bc633f5ff5e
  Content-Length: 0
  Date: Thu, 17 Jan 2013 10:44:03 GMT
 
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0
 root@ubuntu:~# curl -k -v -H 'X-Storage-User: test:tester' -H
 'X-Storage-Pass: testing' http://10.0.2.15:8080/auth/v1.0
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /auth/v1.0 HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Storage-User: test:tester
  X-Storage-Pass: testing
 
  HTTP/1.1 200 OK
  X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test
  X-Storage-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
  X-Auth-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
  Content-Length: 0
  Date: Thu, 17 Jan 2013 10:44:06 GMT
 
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0


 I am alos unable to GEt an account
 root@ubuntu:~# curl -k -v -H 'X-Auth-Token: AUTH_
 tke4fec7d8413d46df9eb867064e07ac83' http://10.0.2.15:8080/v1/AUTH_test
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /v1/AUTH_test HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Auth-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
 
  HTTP/1.1 401 Unauthorized
  Content-Length: 358
  Content-Type: text/html; charset=UTF-8
  Date: Thu, 17 Jan 2013 10:44:09 GMT
 
 html
  head
   title401 Unauthorized/title
  /head
  body
   h1401 Unauthorized/h1
   This server could not verify that you are authorized to access the
 document you requested. Either you supplied the wrong credentials (e.g.,
 bad password), or your browser does not understand how to supply the
 credentials required.br /br /



  /body
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0

 Also if i do

 ps -A | grep memcached  it is no returning anything. I think its a
 problem with memcached.

 please help me. Thanks in advance.


 --
 Best Regards,

 Sujay M
 Final year B.Tech
 Computer Engineering
 NITK Surathkal

 contact: +918971897571

 ___
 OpenStack-dev mailing list
 openstack-...@lists.openstack.org
 http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev



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




 --
 Best Regards,

 Sujay M
 Final year B.Tech
 Computer 

Re: [Openstack] [openstack-dev] [OpenStack]

2013-01-17 Thread Sujay M
Thanks Daneile, that problem got solved.

root@ubuntu:~# curl -k -v -H 'X-Auth-Token:
AUTH_tkf3766e837a6b4e3fb62d20c87630972d' http://10.0.2.15:8080/v1/AUTH_test
* About to connect() to 10.0.2.15 port 8080 (#0)
*   Trying 10.0.2.15... connected
 GET /v1/AUTH_test HTTP/1.1
 User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
 Host: 10.0.2.15:8080
 Accept: */*
 X-Auth-Token: AUTH_tkf3766e837a6b4e3fb62d20c87630972d

 HTTP/1.1 503 Internal Server Error
 Content-Type: text/html; charset=UTF-8
 Content-Length: 0
 Date: Thu, 17 Jan 2013 11:30:06 GMT

* Connection #0 to host 10.0.2.15 left intact
* Closing connection #0

Now i am getting a single token but Why am i getting this error.


On 17 January 2013 16:51, Daniele Valeriani dani...@dvaleriani.net wrote:

 Sujay,

 That means that memcached is still not running.
 You should probably adjust your /etc/memcached.conf file and get it
 running.
 Please refer to the memcached docs if you don't know where to start with
 that.

 Daniele

 Daniele


 On 17 January 2013 11:12, Sujay M sujay@gmail.com wrote:

 Hi Daniele,

 Thanks for the reply. I tried to start memcached using

 service memcached start

 but even after doing this the ps -A | grep memcached  returns nothing
 and multiple tokens are generated


 On 17 January 2013 16:33, Daniele Valeriani dani...@dvaleriani.netwrote:

 Sujay,

 If memcached isn't running the proxy server doesn't have a backend to
 store auth tokens (and the cache section in your config becomes vain). The
 proxy server then generates a new token for each new request.
 This should be OK after memcached has started.

 Daniele

 Daniele


 On 17 January 2013 10:54, Sujay M sujay@gmail.com wrote:

  Hi all,

 I have set up a proxy server on 10.0.2.15 and 4 storage nodes on
 10.0.2.16-19

 My proxy-server configuration file

 root@ubuntu:~# /etc/swift/proxy-server.conf [DEFAULT]
 bind_port = 8080
 user = ug26
 workers = 8

 [pipeline:main]
 pipeline = healthcheck cache tempauth proxy-server

 [app:proxy-server]
 use = egg:swift#proxy
 allow_account_management = true
 account_autocreate = true

 [filter:tempauth]
 use = egg:swift#tempauth
 user_admin_admin = admin .admin .reseller_admin
 user_test_tester = testing .admin
 user_test2_tester2 = testing2 .admin
 user_test_tester3 = testing3

 [filter:healthcheck]
 use = egg:swift#healthcheck

 [filter:cache]
 use = egg:swift#memcache


 I am getting a different auth token each time i try to get an auth url

 root@ubuntu:~# curl -k -v -H 'X-Storage-User: test:tester' -H
 'X-Storage-Pass: testing' http://10.0.2.15:8080/auth/v1.0
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /auth/v1.0 HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Storage-User: test:tester
  X-Storage-Pass: testing
 
  HTTP/1.1 200 OK
  X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test
  X-Storage-Token: AUTH_tkf673fe7a7fc5428398c53bc633f5ff5e
  X-Auth-Token: AUTH_tkf673fe7a7fc5428398c53bc633f5ff5e
  Content-Length: 0
  Date: Thu, 17 Jan 2013 10:44:03 GMT
 
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0
 root@ubuntu:~# curl -k -v -H 'X-Storage-User: test:tester' -H
 'X-Storage-Pass: testing' http://10.0.2.15:8080/auth/v1.0
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /auth/v1.0 HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Storage-User: test:tester
  X-Storage-Pass: testing
 
  HTTP/1.1 200 OK
  X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test
  X-Storage-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
  X-Auth-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
  Content-Length: 0
  Date: Thu, 17 Jan 2013 10:44:06 GMT
 
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0


 I am alos unable to GEt an account
 root@ubuntu:~# curl -k -v -H 'X-Auth-Token: AUTH_
 tke4fec7d8413d46df9eb867064e07ac83' http://10.0.2.15:8080/v1/AUTH_test
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /v1/AUTH_test HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Auth-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
 
  HTTP/1.1 401 Unauthorized
  Content-Length: 358
  Content-Type: text/html; charset=UTF-8
  Date: Thu, 17 Jan 2013 10:44:09 GMT
 
 html
  head
   title401 Unauthorized/title
  /head
  body
   h1401 Unauthorized/h1
   This server could not verify that you are authorized to access the
 document you requested. Either you supplied the wrong credentials (e.g.,
 bad password), or your browser does not understand how to supply the
 credentials required.br /br /



  

Re: [Openstack] [OpenStack][Swift] Multiple Auth URL's for same account problem

2013-01-17 Thread Kuo Hugo
Hello Sujay ,

That should be the problem on memcached .

Would you please check the status of memcached ?
1. grep it from ps command
2. Restart it to check it the token been fixed again
3. If the result is still fail , please check the configuration of
memcached.conf under /etc/ , make sure the port is bind to correct ip
4. you can telnet into memcached to check the contents in current memcache


In your information , seems memcached is not in running status. Please fire
it up first.

Cheers
Hugo Kuo


2013/1/17 Sujay M sujay@gmail.com


 Hi all,

 I have set up a proxy server on 10.0.2.15 and 4 storage nodes on
 10.0.2.16-19

 My proxy-server configuration file

 root@ubuntu:~# /etc/swift/proxy-server.conf [DEFAULT]
 bind_port = 8080
 user = ug26
 workers = 8

 [pipeline:main]
 pipeline = healthcheck cache tempauth proxy-server

 [app:proxy-server]
 use = egg:swift#proxy
 allow_account_management = true
 account_autocreate = true

 [filter:tempauth]
 use = egg:swift#tempauth
 user_admin_admin = admin .admin .reseller_admin
 user_test_tester = testing .admin
 user_test2_tester2 = testing2 .admin
 user_test_tester3 = testing3

 [filter:healthcheck]
 use = egg:swift#healthcheck

 [filter:cache]
 use = egg:swift#memcache


 I am getting a different auth token each time i try to get an auth url

 root@ubuntu:~# curl -k -v -H 'X-Storage-User: test:tester' -H
 'X-Storage-Pass: testing' http://10.0.2.15:8080/auth/v1.0
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /auth/v1.0 HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Storage-User: test:tester
  X-Storage-Pass: testing
 
  HTTP/1.1 200 OK
  X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test
  X-Storage-Token: AUTH_tkf673fe7a7fc5428398c53bc633f5ff5e
  X-Auth-Token: AUTH_tkf673fe7a7fc5428398c53bc633f5ff5e
  Content-Length: 0
  Date: Thu, 17 Jan 2013 10:44:03 GMT
 
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0
 root@ubuntu:~# curl -k -v -H 'X-Storage-User: test:tester' -H
 'X-Storage-Pass: testing' http://10.0.2.15:8080/auth/v1.0
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /auth/v1.0 HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Storage-User: test:tester
  X-Storage-Pass: testing
 
  HTTP/1.1 200 OK
  X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test
  X-Storage-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
  X-Auth-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
  Content-Length: 0
  Date: Thu, 17 Jan 2013 10:44:06 GMT
 
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0


 I am alos unable to GEt an account
 root@ubuntu:~# curl -k -v -H 'X-Auth-Token: AUTH_
 tke4fec7d8413d46df9eb867064e07ac83' http://10.0.2.15:8080/v1/AUTH_test
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /v1/AUTH_test HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Auth-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
 
  HTTP/1.1 401 Unauthorized
  Content-Length: 358
  Content-Type: text/html; charset=UTF-8
  Date: Thu, 17 Jan 2013 10:44:09 GMT
 
 html
  head
   title401 Unauthorized/title
  /head
  body
   h1401 Unauthorized/h1
   This server could not verify that you are authorized to access the
 document you requested. Either you supplied the wrong credentials (e.g.,
 bad password), or your browser does not understand how to supply the
 credentials required.br /br /



  /body
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0

 Also if i do

 ps -A | grep memcached  it is no returning anything. I think its a
 problem with memcached.

 please help me. Thanks in advance.


 --
 Best Regards,

 Sujay M
 Final year B.Tech
 Computer Engineering
 NITK Surathkal

 contact: +918971897571

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




-- 
+Hugo Kuo+
tonyt...@gmail.com
+ tonyt...@gmail.com886 935004793
___
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][Swift] Multiple Auth URL's for same account problem

2013-01-17 Thread Kuo Hugo
btw , the issue of returned

X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test

is due to the default ip of the header will be localhost.
you can modify it by add a user define URL , in your condition , it could
be
http://10.0.2.15:8080/ http://10.0.2.15:8080/auth/v1.0v1/AUTH_test


If you're using swift client for accessing , you'll fail from a remote
client . Due to the returned URL is incorrect.
You had better to change it to match your environment.

Hope it help


Cheers
Hugo



2013/1/17 Sujay M sujay@gmail.com

 Thanks Hugo Kuo,

 Yes that was a problem of memcached, i started it. There was a
 configuration problem.


 On 17 January 2013 18:59, Kuo Hugo tonyt...@gmail.com wrote:

 Hello Sujay ,

 That should be the problem on memcached .

 Would you please check the status of memcached ?
 1. grep it from ps command
 2. Restart it to check it the token been fixed again
 3. If the result is still fail , please check the configuration of
 memcached.conf under /etc/ , make sure the port is bind to correct ip
 4. you can telnet into memcached to check the contents in current memcache


 In your information , seems memcached is not in running status. Please
 fire it up first.

 Cheers
 Hugo Kuo


 2013/1/17 Sujay M sujay@gmail.com


 Hi all,

 I have set up a proxy server on 10.0.2.15 and 4 storage nodes on
 10.0.2.16-19

 My proxy-server configuration file

 root@ubuntu:~# /etc/swift/proxy-server.conf [DEFAULT]
 bind_port = 8080
 user = ug26
 workers = 8

 [pipeline:main]
 pipeline = healthcheck cache tempauth proxy-server

 [app:proxy-server]
 use = egg:swift#proxy
 allow_account_management = true
 account_autocreate = true

 [filter:tempauth]
 use = egg:swift#tempauth
 user_admin_admin = admin .admin .reseller_admin
 user_test_tester = testing .admin
 user_test2_tester2 = testing2 .admin
 user_test_tester3 = testing3

 [filter:healthcheck]
 use = egg:swift#healthcheck

 [filter:cache]
 use = egg:swift#memcache


 I am getting a different auth token each time i try to get an auth url

 root@ubuntu:~# curl -k -v -H 'X-Storage-User: test:tester' -H
 'X-Storage-Pass: testing' http://10.0.2.15:8080/auth/v1.0
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /auth/v1.0 HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Storage-User: test:tester
  X-Storage-Pass: testing
 
  HTTP/1.1 200 OK
  X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test
  X-Storage-Token: AUTH_tkf673fe7a7fc5428398c53bc633f5ff5e
  X-Auth-Token: AUTH_tkf673fe7a7fc5428398c53bc633f5ff5e
  Content-Length: 0
  Date: Thu, 17 Jan 2013 10:44:03 GMT
 
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0
 root@ubuntu:~# curl -k -v -H 'X-Storage-User: test:tester' -H
 'X-Storage-Pass: testing' http://10.0.2.15:8080/auth/v1.0
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /auth/v1.0 HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Storage-User: test:tester
  X-Storage-Pass: testing
 
  HTTP/1.1 200 OK
  X-Storage-Url: http://127.0.0.1:8080/v1/AUTH_test
  X-Storage-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
  X-Auth-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
  Content-Length: 0
  Date: Thu, 17 Jan 2013 10:44:06 GMT
 
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0


 I am alos unable to GEt an account
 root@ubuntu:~# curl -k -v -H 'X-Auth-Token: AUTH_
 tke4fec7d8413d46df9eb867064e07ac83' http://10.0.2.15:8080/v1/AUTH_test
 * About to connect() to 10.0.2.15 port 8080 (#0)
 *   Trying 10.0.2.15... connected
  GET /v1/AUTH_test HTTP/1.1
  User-Agent: curl/7.22.0 (x86_64-pc-linux-gnu) libcurl/7.22.0
 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
  Host: 10.0.2.15:8080
  Accept: */*
  X-Auth-Token: AUTH_tke4fec7d8413d46df9eb867064e07ac83
 
  HTTP/1.1 401 Unauthorized
  Content-Length: 358
  Content-Type: text/html; charset=UTF-8
  Date: Thu, 17 Jan 2013 10:44:09 GMT
 
 html
  head
   title401 Unauthorized/title
  /head
  body
   h1401 Unauthorized/h1
   This server could not verify that you are authorized to access the
 document you requested. Either you supplied the wrong credentials (e.g.,
 bad password), or your browser does not understand how to supply the
 credentials required.br /br /



  /body
 * Connection #0 to host 10.0.2.15 left intact
 * Closing connection #0

 Also if i do

 ps -A | grep memcached  it is no returning anything. I think its a
 problem with memcached.

 please help me. Thanks in advance.


 --
 Best Regards,

 Sujay M
 Final year B.Tech
 Computer Engineering
 NITK Surathkal

 contact: +918971897571

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

Re: [Openstack] Difference between Swift and Cinder

2013-01-17 Thread harryxiyou
On Thu, Jan 17, 2013 at 1:01 AM, Syed Armani dce3...@gmail.com wrote:
 This question was also discussed last week. You may want to have a look at
 the answers there.
 https://lists.launchpad.net/openstack/msg19997.html

Thanks, i see ;-)


-- 
Thanks
Harry Wei

___
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] VMs accesible from external LAN

2013-01-17 Thread Kuo Hugo
Did you ever try to trunk two VLANs on your switch ?

Hugo


2013/1/17 JuanFra Rodriguez Cardoso juanfra.rodriguez.card...@gmail.com

 Hi guys:

 This is my scenario: Centos 6.3 / Folsom / nova-network / vlanManager

 I created one vlan (10.129.130.0/24) for my project. How to can I allow
 to reach VMs from hosts of VLAN (10.129.128.0/24)?
 Do I have to add manually an iptables rule? or modify a nova-network chain?

 Thanks!

 Best regards,
 --
 JuanFra

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




-- 
+Hugo Kuo+
tonyt...@gmail.com
+ tonyt...@gmail.com886 935004793
___
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] Questions abount timeout error with qpid

2013-01-17 Thread 张家龙
Hello everyone,I have a problem that timeout error always occured when I use Nova Essex to create vm instance with qpid on Centos 6.3.The follows is my qpid`s information:Name : qpid-cpp-serverArch : x86_64Version : 0.14Release : 16.el6Size : 3.3 MRepo : installedSummary : An AMQP message broker daemonURL : http://qpid.apache.orgLicense : ASL 2.0Description : A message broker daemon that receives stores and routes messages using : the open AMQP messaging protocol. And the follows is the configuration of qpid:cat /etc/qpidd.confcluster-mechanism=DIGEST-MD5 ANONYMOUSauth=noFinally,my nova.conf is in follows:http://pastebin.com/6xW9wCFWThen ,when i create a vm instance,the timeout error always occured like follows:http://pastebin.com/4s07VVYqAny solutions for this problem?Waiting your reply.--
Best Regards

ZhangJialong___
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] Quantum duplicate subnet creation

2013-01-17 Thread Balamurugan V G
I have a related question. Though setting allow_overlapping_ips to True
works, the comment above this setting states that this should be left as
False if nova security and/or metadata service is used.


# Enable or disable bulk create/update/delete operations
# allow_bulk = True
# Enable or disable overlapping IPs for subnets
# Attention: the following parameter MUST be set to False if Quantum is
# being used in conjunction with nova security groups and/or metadata
service.
# allow_overlapping_ips = False
allow_overlapping_ips = True

Can some one thought more light on this?

Regards,
Balu


On Thu, Jan 17, 2013 at 3:05 PM, Balamurugan V G balamuruga...@gmail.comwrote:

 Thanks a lot Aaron and Robert. That worked like a charm!

 I set the 'allow_overlapping_ips = True' in quantum.conf and rebooted the
 stack(wish there was an easy cli to restart individual projects/services or
 may be I dont know if one exists).

 And while still in a Flat network setup I could create the duplicate
 networks.

 root@openstack:~# nova list

 +--+--++---+
 | ID   | Name | Status |
 Networks  |

 +--+--++---+
 | f4762c79-e322-4ec5-8f62-ab2cbe156363 | A1 | ACTIVE | labnet=10.5.12.24;
 private1=192.168.168.4 |
 | 4bac873f-e081-460b-8bf8-95f8719081c7  | A2 | ACTIVE | labnet=10.5.12.22;
 private1=192.168.168.3 |
 | d7e47567-81eb-48a3-a2ca-63e1b5df8a08 | B1 | ACTIVE | labnet=10.5.12.23;
 private2=192.168.168.3 |

 +--+--++---+
 root@openstack:~#

 Instances A1 and* *A2 can communicate over the private network while B1
 cannot talk to A2 as desired and it doesnt complain about conflicting IP
 either.

 I am using the
 quantum.plugins.openvswitch.ovs_quantum_plugin.OVSQuantumPluginV2 plugin.

 Regards,
 Balu




 On Thu, Jan 17, 2013 at 2:17 PM, Aaron Rosen aro...@nicira.com wrote:

 Hi,

 Yup this is definitely possible. The reason why this isn't set by default
 is that some distros don't ship kernels that build with CONFIG_NET_NS=y or
 their iproute2 package is to outdated to support linux namespaces.  Also,
 until recently nova's metadata service didn't support overlapping ips. If
 you are running ubuntu 12.04 you should be able to set:

 Q_ALLOW_OVERLAPPING_IP=True

 in your localrc to enable this.

 or edit your quantum.conf here and restart quantum to enable overlapping
 ips.

 # Enable or disable overlapping IPs for subnets
 # Attention: the following parameter MUST be set to False if Quantum is
 # being used in conjunction with nova security groups and/or metadata
 service.
 # allow_overlapping_ips = False


 Aaron

 p.s: I don't think this will work in a flat network setup though since
 there is no way to isolate that. What plugin are you using?
  I have the following networks in a flat network setup.


 On Thu, Jan 17, 2013 at 2:52 AM, Balamurugan V G balamuruga...@gmail.com
  wrote:

 Hi,

 Is there a way to create a duplicate network/subnet for tenant in
 quantum. Basically for a tenant, I want to have some instances(GroupA)
 share a subnet and another set of instances(GroupB) share the
 same(duplicate) subnet but GroupA and GroupB should be isolated. I have
 labnet which is the flat network to which one instance from each group is
 assigned for external connectivity. Then I want to have two private
 networks private1 and private2 both sharing the same subnet but I was to
 assign some instances to private1 and some in private2.

 I have the following networks in a flat network setup.

 root@openstack:~# quantum subnet-list

 +--+--+--+--+
 | id   | name | cidr |
 allocation_pools |

 +--+--+--+--+
 | abb62a74-ad15-452c-857f-ee0a1b388ede |  | 192.168.168.0/24 |
 {start: 192.168.168.2, end: 192.168.168.254} |
 | eedc0c12-c3ed-42ce-a860-692e766087a2 |  | 10.5.12.0/24 |
 {start: 10.5.12.21, end: 10.5.12.25} |

 +--+--+--+--+
 root@openstack:~#


 Now, the following gets denied.

 root@openstack:~# quantum subnet-create --tenant-id
 7cda178971e84c5194c8531bf4f229d7  private2 192.168.168.0/24
 Invalid input for operation: Requested subnet with cidr:
 192.168.168.0/24 for network: 64ec75d6-0c6f-44e1-a268-b573324c4160
 overlaps with another subnet.
 root@openstack:~#

 I understand that a duplicate network with a tenant is not a common
 

[Openstack] [glance] how to export snapshot to local file system

2013-01-17 Thread Ajiva Fan
dear all,

i have deployed openstack essex on ubuntu 12.04 precise, there are
some instances running for couple of days
now the server becomes unstable, so i want to save my instances'
snapshot to remote file system in order to use them in a new
environment. i find that there is no such command in glance, so what
should i do?

i guess i can achieve it by following steps:
1. snapshot instance
2. locate the snapshot file in /var/lib/glance/images/xxx
3. copy this file to a remote host
4. upload this file by 'glance add' as disk_format=qcow2 to a new
openstack environment

is it correct? and is there any convenient way?

thanks for any help

___
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] Quantum duplicate subnet creation

2013-01-17 Thread Aaron Rosen
Nova (network) does not support overlapping ip addresses so if you use nova
security groups directly this won't work. This should be fixed in G3 using
nova security groups with a nova to quantum security group proxy.
Until recently nova meta data did not work with overlapping ips but that
works now if you use the quantum-meta data agent. If you want to use
security groups with overlapping ips you can use quantum security groups
directly, though this only works with the linux bridge plugin currently
(soon the ovs and nvp plugin will support this once some patches merge
upstream).

Aaron


On Fri, Jan 18, 2013 at 12:09 AM, Balamurugan V G
balamuruga...@gmail.comwrote:

 Can some one thought more light on this?

___
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] [glance] how to export snapshot to local file system

2013-01-17 Thread Wangpan
I think you are right, and copy /var/lib/glance/images/xxx to remote 
host is the fastest way.
You can check the snapshot by using it create an instance in the new openstack 
environment.

2013-01-18



Wangpan



发件人:Ajiva Fan
发送时间:2013-01-18 14:08
主题:[Openstack] [glance] how to export snapshot to local file system
收件人:openstack@lists.launchpad.netopenstack@lists.launchpad.net
抄送:

dear all, 

i have deployed openstack essex on ubuntu 12.04 precise, there are 
some instances running for couple of days 
now the server becomes unstable, so i want to save my instances' 
snapshot to remote file system in order to use them in a new 
environment. i find that there is no such command in glance, so what 
should i do? 

i guess i can achieve it by following steps: 
1. snapshot instance 
2. locate the snapshot file in /var/lib/glance/images/xxx 
3. copy this file to a remote host 
4. upload this file by 'glance add' as disk_format=qcow2 to a new 
openstack environment 

is it correct? and is there any convenient way? 

thanks for any help 

___ 
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] Cannot install Cinder doc successfully

2013-01-17 Thread harryxiyou
Hi all,

I wanna install Cinder docs for reading but i cannot install them according
to cinder/doc/README.rst.

My PC environment are
==
$ lsb_release -a
Distributor ID: Ubuntu
Description:Ubuntu 10.04.4 LTS
Release:10.04
Codename:   lucid

$ pip --version
pip 0.3.1 from /usr/lib/python2.6/dist-packages (python 2.6)

My operation steps


1, download cinder branch from https://github.com/openstack/cinder .
2, sudo apt-get install python-pip.
3, sudo pip install Sphinx
4, sudo apt-get install graphviz
5, make

After step 5, i catch the following errors.

$ make
sphinx-build -b html -d build/doctrees   source build/html
Making output directory...
Running Sphinx v1.1.3

Extension error:
Could not import extension ext.cinder_autodoc (exception: No module
named paramiko)
make: *** [html] error 1

Could anyone give me some suggestions? Thanks in advance ;-)



-- 
Thanks
Harry Wei

___
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] [glance] how to export snapshot to local file system

2013-01-17 Thread Umar Draz
Hi,

Why you are not use this


glance image-download Image ID --file filename.img


Br.

Umar
On Fri, Jan 18, 2013 at 11:26 AM, Wangpan hzwang...@corp.netease.comwrote:

 **
 I think you are right, and copy /var/lib/glance/images/xxx to
 remote host is the fastest way.
 You can check the snapshot by using it create an instance in the new
 openstack environment.

 2013-01-18
  --
  Wangpan
  --
  *发件人:*Ajiva Fan
 *发送时间:*2013-01-18 14:08
 *主题:*[Openstack] [glance] how to export snapshot to local file system
 *收件人:*openstack@lists.launchpad.netopenstack@lists.launchpad.net
 *抄送:*

  dear all,

 i have deployed openstack essex on ubuntu 12.04 precise, there are
 some instances running for couple of days
 now the server becomes unstable, so i want to save my instances'
 snapshot to remote file system in order to use them in a new
 environment. i find that there is no such command in glance, so what
 should i do?

 i guess i can achieve it by following steps:
 1. snapshot instance
 2. locate the snapshot file in /var/lib/glance/images/xxx
 3. copy this file to a remote host
 4. upload this file by 'glance add' as disk_format=qcow2 to a new
 openstack environment

 is it correct? and is there any convenient way?

 thanks for any help

 ___
 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




-- 
Umar Draz
Network Architect
___
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 Still Failing: precise_grizzly_quantum_trunk #203

2013-01-17 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/203/Project:precise_grizzly_quantum_trunkDate of build:Thu, 17 Jan 2013 03:01:01 -0500Build duration:1 min 21 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesRefactor hyperv plugin and agent.by zhongyue.naheditquantum/plugins/hyperv/db.pyeditquantum/plugins/hyperv/agent/utils.pyeditquantum/plugins/hyperv/rpc_callbacks.pyeditquantum/plugins/hyperv/hyperv_quantum_plugin.pyeditquantum/plugins/hyperv/agent_notifier_api.pyFixes inefficiency in quantum.api.v2.base._filtersby zhongyue.naheditquantum/api/v2/base.pyConsole Output[...truncated 2929 lines...]git log faa1733ef0adfdfb3e625d60d96b08ce764ca824..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/quantum/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201301170301~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [e2b9b0d] Fixes inefficiency in quantum.api.v2.base._filtersdch -a [c58bdd3] Refactor hyperv plugin and agent.dch -a [cb3384f] Update WebOb version to >=1.2dch -a [dfebeb7] Ensure that agents also set control_exchangedch -a [d8b0f10] Fix line endings from CRLF to LF.dch -a [20894c3] Fixes import order nitsdch -a [4970636] Fix ATTR_NOT_SPECIFIED comparison errorsdch -a [2d4431d] Add migration for network bindings in NVP plugindch -a [2f7a55b] NEC OpenFlow plugin supports L3 agent RPCdch -a [0748f92] Update latest OSLO.dch -a [53a787d] Catch up RPC context fixes on NEC OpenFlow plugindch -a [d77376e] ensure all enums in loadbalancer models have namesdch -a [8308201] Adding multi switch support to the Cisco Nexus plugindch -a [d60f6ef] Name the securitygrouprules.direction enum.dch -a [ba12d3e] Adds support for deploying Quantum on Windowsdch -a [2d9e479] Adds a Hyper-V Quantum plugindch -a [d5526d6] Add exception validation for subnet used.dch -a [6cd4789] Remove accessing cfg.CONF.DATABASE in nec-agentdch -a [01f3b1f] Inform a client if Quantum provides port filtering featuredch -a [35a90fc] Remove unsused imports in the plugins packagedch -a [b44314f] DHCP agent unable to access port when restartingdch -a [9247776] Remove unused imports in unit testsdch -a [de99585] Latest OSLO updatesdch -a [9db6917] Optimize if/else logic in quantum.api.v2.base.prepare_request_body()dch -a [2b75d6b] Fixes quantum.api.v2.base._filters to be more intuitivedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-b6966067-d7fd-46f6-b2cb-d2de1b373afc', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-b6966067-d7fd-46f6-b2cb-d2de1b373afc', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #483

2013-01-17 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/483/Project:precise_grizzly_nova_trunkDate of build:Thu, 17 Jan 2013 07:01:03 -0500Build duration:2 min 48 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesPull NovaWebSocketProxy class out of nova-novncproxy binaryby berrangeeditbin/nova-novncproxyedittools/pip-requiresaddnova/console/websocketproxy.pyAdd nova-spicehtml5proxy helperby berrangeadddoc/source/man/nova-spicehtml5proxy.rsteditdoc/source/conf.pyaddbin/nova-spicehtml5proxyeditsetup.pyAdd a get_spice_console method to nova.virt.ComputeDriver APIby berrangeeditnova/virt/libvirt/driver.pyeditnova/virt/driver.pyeditnova/tests/test_virt_drivers.pyeditnova/virt/fake.pyFix fallback when Quantum doesnt provide a vif_typeby berrangeeditnova/virt/libvirt/vif.pyConsole Output[...truncated 5839 lines...]dch -a [c215b5e] Add support for configuring SPICE graphics with libvirtdch -a [a41f4c9] Add support for setting up  elements in libvirt configdch -a [5873dbd] Add common config options for SPICE graphicsdch -a [a3eaf78] Reject user ports that have MACs the hypervisor cannot use.dch -a [1329899] Remove unused import.dch -a [7855afe] Move migration_get_..._by_host_and_node to conductordch -a [41e0b40] Make resource tracker use conductor for migration updatesdch -a [a0ae2e2] minor improvements to nova/tests/test_metadata.pydch -a [4b9bd91] Cells: Add some cells support to admin_actions extensiondch -a [fc42f76] Populate service list with availability zone and correct unit testdch -a [fa96bbf] Add 'devname' to nova.network.model.VIF classdch -a [a0c3e67] Use testrepository setuptools support.dch -a [12e38d9] Cleaning up exception handlingdch -a [6b4ad2d] Cells: Add cells API extensiondch -a [f6c205f] More HostAPI() cleanup for cells.dch -a [3824352] Renames the new os-networks extensiondch -a [6130aac] enables admin to view instance fault "details"dch -a [327989e] Fix problem with ipv6 link-local address(es)dch -a [313279f] enable hacking.py self testsdch -a [71fecfa] Correct docstring on sizelimit middleware.dch -a [1dacde8] use postgresql INET datatype for storing IPsdch -a [e0ac5be] Cells: Commit resize quota reservations immediatelydch -a [0668194] Move network call from compute API to the managerdch -a [bc7dc55] Make sure reboot_instance uses updated instancedch -a [f51a285] Implements getPasswordData for ec2dch -a [733712b] Expand quota loggingdch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-441d4b98-f174-4c04-9234-68d06cda7eb0', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-441d4b98-f174-4c04-9234-68d06cda7eb0', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #484

2013-01-17 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/484/Project:precise_grizzly_nova_trunkDate of build:Thu, 17 Jan 2013 07:32:07 -0500Build duration:3 min 58 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesExpose a get_spice_console RPC API methodby berrangeeditnova/tests/fakelibvirt.pyadddoc/api_samples/os-consoles/get-spice-console-post-resp.xmladddoc/api_samples/os-consoles/get-spice-console-post-resp.jsonaddnova/tests/integrated/api_samples/os-consoles/get-spice-console-post-resp.xml.tpleditnova/compute/rpcapi.pyeditnova/compute/api.pyaddnova/tests/integrated/api_samples/os-consoles/get-spice-console-post-req.xml.tpleditnova/tests/integrated/test_api_samples.pyadddoc/api_samples/os-consoles/get-spice-console-post-req.jsoneditnova/api/openstack/compute/contrib/consoles.pyeditnova/tests/test_fakelibvirt.pyeditnova/tests/compute/test_rpcapi.pyeditnova/tests/compute/test_compute.pyeditnova/tests/fake_policy.pyaddnova/tests/integrated/api_samples/os-consoles/get-spice-console-post-resp.json.tpleditnova/compute/cells_api.pyeditnova/tests/api/openstack/compute/contrib/test_consoles.pyaddnova/tests/integrated/api_samples/os-consoles/get-spice-console-post-req.json.tpleditnova/compute/manager.pyadddoc/api_samples/os-consoles/get-spice-console-post-req.xmlConsole Output[...truncated 5850 lines...]dch -a [c215b5e] Add support for configuring SPICE graphics with libvirtdch -a [a41f4c9] Add support for setting up  elements in libvirt configdch -a [5873dbd] Add common config options for SPICE graphicsdch -a [a3eaf78] Reject user ports that have MACs the hypervisor cannot use.dch -a [1329899] Remove unused import.dch -a [7855afe] Move migration_get_..._by_host_and_node to conductordch -a [41e0b40] Make resource tracker use conductor for migration updatesdch -a [a0ae2e2] minor improvements to nova/tests/test_metadata.pydch -a [4b9bd91] Cells: Add some cells support to admin_actions extensiondch -a [fc42f76] Populate service list with availability zone and correct unit testdch -a [fa96bbf] Add 'devname' to nova.network.model.VIF classdch -a [a0c3e67] Use testrepository setuptools support.dch -a [12e38d9] Cleaning up exception handlingdch -a [6b4ad2d] Cells: Add cells API extensiondch -a [f6c205f] More HostAPI() cleanup for cells.dch -a [3824352] Renames the new os-networks extensiondch -a [6130aac] enables admin to view instance fault "details"dch -a [327989e] Fix problem with ipv6 link-local address(es)dch -a [313279f] enable hacking.py self testsdch -a [71fecfa] Correct docstring on sizelimit middleware.dch -a [1dacde8] use postgresql INET datatype for storing IPsdch -a [e0ac5be] Cells: Commit resize quota reservations immediatelydch -a [0668194] Move network call from compute API to the managerdch -a [bc7dc55] Make sure reboot_instance uses updated instancedch -a [f51a285] Implements getPasswordData for ec2dch -a [733712b] Expand quota loggingdch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-ea7c6177-eae9-48eb-9a68-11d4fc06db39', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-ea7c6177-eae9-48eb-9a68-11d4fc06db39', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_nova_trunk #492

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/492/Project:raring_grizzly_nova_trunkDate of build:Thu, 17 Jan 2013 07:31:03 -0500Build duration:5 min 50 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesExpose a get_spice_console RPC API methodby berrangeadddoc/api_samples/os-consoles/get-spice-console-post-req.jsonadddoc/api_samples/os-consoles/get-spice-console-post-resp.jsoneditnova/tests/compute/test_rpcapi.pyadddoc/api_samples/os-consoles/get-spice-console-post-resp.xmladdnova/tests/integrated/api_samples/os-consoles/get-spice-console-post-resp.xml.tpleditnova/tests/compute/test_compute.pyadddoc/api_samples/os-consoles/get-spice-console-post-req.xmleditnova/compute/api.pyeditnova/compute/rpcapi.pyeditnova/tests/integrated/test_api_samples.pyaddnova/tests/integrated/api_samples/os-consoles/get-spice-console-post-resp.json.tpladdnova/tests/integrated/api_samples/os-consoles/get-spice-console-post-req.json.tpleditnova/compute/manager.pyeditnova/tests/api/openstack/compute/contrib/test_consoles.pyeditnova/tests/fake_policy.pyeditnova/compute/cells_api.pyeditnova/tests/test_fakelibvirt.pyeditnova/tests/fakelibvirt.pyaddnova/tests/integrated/api_samples/os-consoles/get-spice-console-post-req.xml.tpleditnova/api/openstack/compute/contrib/consoles.pyConsole Output[...truncated 4427 lines...]dch -a [9d3f524] Correct the calculating of disk size when using lvm disk backend.dch -a [39f80b8] Adding configdrive to xenapi.dch -a [038ca9b] Fix libvirt resume function call to get_domain_xmldch -a [96c04dd] Make it clearer that network.api.API is nova-network specific.dch -a [97f0ec7] Access instance as dict, not object in xenapidch -a [733712b] Expand quota loggingdch -a [745335b] Move logic from os-api-host into computedch -a [7a77dd7] Create a directory for servicegroup drivers.dch -a [5731852] Move update_instance_info_cache to conductor.dch -a [bda08f6] Change ComputerDriver.legacy_nwinfo to raise by default.dch -a [3934fa5] Cleanup pyflakes in nova-managedch -a [ce098cc] Add user/tenant shim to RequestContextdch -a [3a0eb6d] Add host name to log message for _local_deletedch -a [4babf7d] Make Quantum plugin fill in the 'bridge' namedch -a [f863697] Make nova network manager fill in vif_typedch -a [67cd497] Add some constants to the network model for drivers to usedch -a [bcb9983] Move libvirt VIF XML config into designer.pydch -a [567bbd1] Remove bogus 'unplug' calls from libvirt VIF testdch -a [abc9a0d] Update instance's cell_name in API cell.dch -a [f362b36] Fix test cases in integrated.test_multiprocess_apidch -a [35328dd] Added sample tests to FlavorSwap API.dch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [73cb9f6] Fix pyflakes issues in integrated testsdch -a [477722a] Fix lintstack check for multi-patch reviewsdch -a [680a3ce] xenapi: Remove dead code, moves, testsdch -a [4ff4edd] Upgrade WebOb to 1.2.3dch -a [e87c241] Allow pinging own float when using fixed gatewaydch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-e9d20867-7797-4af4-9220-68cd6b0593d4', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-e9d20867-7797-4af4-9220-68cd6b0593d4', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: precise_grizzly_cinder_trunk #96

2013-01-17 Thread openstack-testing-bot
Title: precise_grizzly_cinder_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_cinder_trunk/96/Project:precise_grizzly_cinder_trunkDate of build:Thu, 17 Jan 2013 08:28:11 -0500Build duration:3 min 25 secBuild cause:Started by user james-pageBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesNo ChangesConsole Output[...truncated 6696 lines...]Good signature on /tmp/tmpXU42tP/cinder_2013.1+git201301170828~precise-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmpXU42tP/cinder_2013.1+git201301170828~precise-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading cinder_2013.1+git201301170828~precise-0ubuntu1.dsc: done.  Uploading cinder_2013.1+git201301170828~precise.orig.tar.gz: done.  Uploading cinder_2013.1+git201301170828~precise-0ubuntu1.debian.tar.gz: done.  Uploading cinder_2013.1+git201301170828~precise-0ubuntu1_source.changes: done.Successfully uploaded packages.INFO:root:Installing build artifacts into /var/lib/jenkins/www/aptDEBUG:root:['reprepro', '--waitforlock', '10', '-Vb', '/var/lib/jenkins/www/apt', 'include', 'precise-grizzly', 'cinder_2013.1+git201301170828~precise-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/precise-grizzly/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/precise-grizzly/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/c/cinder/cinder-api_2013.1+git201301141504~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/cinder/cinder-common_2013.1+git201301141504~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/cinder/cinder-scheduler_2013.1+git201301141504~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/cinder/cinder-volume_2013.1+git201301141504~precise-0ubuntu1_all.debdeleting and forgetting pool/main/c/cinder/python-cinder_2013.1+git201301141504~precise-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/cinder/precise-grizzly']Pushed up to revision 71.INFO:root:Storing current commit for next build: bb06ebd0f6a75a6ba55a7c022de96a91e3750d20INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/cinder/grizzly /tmp/tmpXU42tP/cindermk-build-deps -i -r -t apt-get -y /tmp/tmpXU42tP/cinder/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 5f41390dde7305e8374fe9bd193c396e6ea04350..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/cinder/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201301170828~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [bb06ebd] support a configurable volume wiping methoddch -a [24d9610] Support for SSL in wsgi.Serverdch -a [b8fca65] Enhance wsgi to listen on ipv6 addressdch -a [7c6e8b8] Update SolidFire Volume driverdch -a [bf46a11] Upgrade WebOb to 1.2.3debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC cinder_2013.1+git201301170828~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A cinder_2013.1+git201301170828~precise-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing cinder_2013.1+git201301170828~precise-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include precise-grizzly cinder_2013.1+git201301170828~precise-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/cinder/precise-grizzlyEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #485

2013-01-17 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/485/Project:precise_grizzly_nova_trunkDate of build:Thu, 17 Jan 2013 08:32:09 -0500Build duration:3 min 38 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd encryption method using an ssh public key.by vishvanandaeditnova/crypto.pyeditnova/exception.pyeditnova/tests/test_crypto.pyBetter instance fault message when rescheduling.by rconradharriseditnova/compute/manager.pyConsole Output[...truncated 5856 lines...]dch -a [c215b5e] Add support for configuring SPICE graphics with libvirtdch -a [a41f4c9] Add support for setting up  elements in libvirt configdch -a [5873dbd] Add common config options for SPICE graphicsdch -a [a3eaf78] Reject user ports that have MACs the hypervisor cannot use.dch -a [1329899] Remove unused import.dch -a [7855afe] Move migration_get_..._by_host_and_node to conductordch -a [41e0b40] Make resource tracker use conductor for migration updatesdch -a [a0ae2e2] minor improvements to nova/tests/test_metadata.pydch -a [4b9bd91] Cells: Add some cells support to admin_actions extensiondch -a [fc42f76] Populate service list with availability zone and correct unit testdch -a [fa96bbf] Add 'devname' to nova.network.model.VIF classdch -a [a0c3e67] Use testrepository setuptools support.dch -a [12e38d9] Cleaning up exception handlingdch -a [6b4ad2d] Cells: Add cells API extensiondch -a [f6c205f] More HostAPI() cleanup for cells.dch -a [3824352] Renames the new os-networks extensiondch -a [6130aac] enables admin to view instance fault "details"dch -a [327989e] Fix problem with ipv6 link-local address(es)dch -a [313279f] enable hacking.py self testsdch -a [71fecfa] Correct docstring on sizelimit middleware.dch -a [1dacde8] use postgresql INET datatype for storing IPsdch -a [e0ac5be] Cells: Commit resize quota reservations immediatelydch -a [0668194] Move network call from compute API to the managerdch -a [bc7dc55] Make sure reboot_instance uses updated instancedch -a [f51a285] Implements getPasswordData for ec2dch -a [733712b] Expand quota loggingdch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-3b103dd6-53c4-4a99-9583-6f7a5a5434ac', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-3b103dd6-53c4-4a99-9583-6f7a5a5434ac', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


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

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_python-novaclient_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_python-novaclient_trunk/39/Project:raring_grizzly_python-novaclient_trunkDate of build:Thu, 17 Jan 2013 08:31:01 -0500Build duration:5 min 53 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesImplement get password for novaclientby vishvanandaedittests/v1_1/test_shell.pyedittests/v1_1/test_servers.pyedittests/v1_1/fakes.pyaddnovaclient/crypto.pyeditnovaclient/v1_1/shell.pyeditnovaclient/v1_1/servers.pyConsole Output[...truncated 3775 lines...]Version: 1:2.10.0.57.g020ff90+git201301170831~raring-0ubuntu1Finished at 20130117-0836Build needed 00:03:25, 2624k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'python-novaclient_2.10.0.57.g020ff90+git201301170831~raring-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'python-novaclient_2.10.0.57.g020ff90+git201301170831~raring-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-novaclient/grizzly /tmp/tmpN4YsvQ/python-novaclientmk-build-deps -i -r -t apt-get -y /tmp/tmpN4YsvQ/python-novaclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 6f580661f647bf5085edff75689eb28565728acb..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/python-novaclient/raring-grizzly --forcedch -b -D raring --newversion 1:2.10.0.57.g020ff90+git201301170831~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [020ff90] Implement get password for novaclientdch -a [dffd415] Adds tenant network support to the clientdch -a [020de7c] Fix a couple of broken shell testsdch -a [b5f3307] Update hosts API action calls (startup etc.)dch -a [207969f] When logging request include request datadch -a [9e319ec] Add support for instance evacuate.dch -a [2d3e0d9] Fix the help text of add-fixed-ipdch -a [53aee5c] Move from untitest2 to testtools.dch -a [eb7c390] Update README.rstdch -a [6307310] Unify Manager._update behaviourdch -a [4cf314b] Fix some usage messages of 'nova volume-*'debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-novaclient_2.10.0.57.g020ff90+git201301170831~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A python-novaclient_2.10.0.57.g020ff90+git201301170831~raring-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'python-novaclient_2.10.0.57.g020ff90+git201301170831~raring-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 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'python-novaclient_2.10.0.57.g020ff90+git201301170831~raring-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: raring_grizzly_nova_trunk #493

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/493/Project:raring_grizzly_nova_trunkDate of build:Thu, 17 Jan 2013 08:33:10 -0500Build duration:4 min 52 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd encryption method using an ssh public key.by vishvanandaeditnova/tests/test_crypto.pyeditnova/crypto.pyeditnova/exception.pyBetter instance fault message when rescheduling.by rconradharriseditnova/compute/manager.pyConsole Output[...truncated 4433 lines...]dch -a [9d3f524] Correct the calculating of disk size when using lvm disk backend.dch -a [39f80b8] Adding configdrive to xenapi.dch -a [038ca9b] Fix libvirt resume function call to get_domain_xmldch -a [96c04dd] Make it clearer that network.api.API is nova-network specific.dch -a [97f0ec7] Access instance as dict, not object in xenapidch -a [733712b] Expand quota loggingdch -a [745335b] Move logic from os-api-host into computedch -a [7a77dd7] Create a directory for servicegroup drivers.dch -a [5731852] Move update_instance_info_cache to conductor.dch -a [bda08f6] Change ComputerDriver.legacy_nwinfo to raise by default.dch -a [3934fa5] Cleanup pyflakes in nova-managedch -a [ce098cc] Add user/tenant shim to RequestContextdch -a [3a0eb6d] Add host name to log message for _local_deletedch -a [4babf7d] Make Quantum plugin fill in the 'bridge' namedch -a [f863697] Make nova network manager fill in vif_typedch -a [67cd497] Add some constants to the network model for drivers to usedch -a [bcb9983] Move libvirt VIF XML config into designer.pydch -a [567bbd1] Remove bogus 'unplug' calls from libvirt VIF testdch -a [abc9a0d] Update instance's cell_name in API cell.dch -a [f362b36] Fix test cases in integrated.test_multiprocess_apidch -a [35328dd] Added sample tests to FlavorSwap API.dch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [73cb9f6] Fix pyflakes issues in integrated testsdch -a [477722a] Fix lintstack check for multi-patch reviewsdch -a [680a3ce] xenapi: Remove dead code, moves, testsdch -a [4ff4edd] Upgrade WebOb to 1.2.3dch -a [e87c241] Allow pinging own float when using fixed gatewaydch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-ecb2663f-68f5-4014-8c1d-b814a1e342d1', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-ecb2663f-68f5-4014-8c1d-b814a1e342d1', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: raring_grizzly_python-novaclient_trunk #41

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_python-novaclient_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_python-novaclient_trunk/41/Project:raring_grizzly_python-novaclient_trunkDate of build:Thu, 17 Jan 2013 09:03:24 -0500Build duration:3 min 40 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 3 out of the last 5 builds failed.40ChangesNo ChangesConsole Output[...truncated 4164 lines...]Good signature on /tmp/tmpHGmLiJ/python-novaclient_2.10.0.57.g020ff90+git201301170903~raring-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading python-novaclient_2.10.0.57.g020ff90+git201301170903~raring-0ubuntu1.dsc: done.  Uploading python-novaclient_2.10.0.57.g020ff90+git201301170903~raring.orig.tar.gz: done.  Uploading python-novaclient_2.10.0.57.g020ff90+git201301170903~raring-0ubuntu1.debian.tar.gz: done.  Uploading python-novaclient_2.10.0.57.g020ff90+git201301170903~raring-0ubuntu1_source.changes: done.Successfully uploaded packages.INFO:root:Installing build artifacts into /var/lib/jenkins/www/aptDEBUG:root:['reprepro', '--waitforlock', '10', '-Vb', '/var/lib/jenkins/www/apt', 'include', 'raring-grizzly', 'python-novaclient_2.10.0.57.g020ff90+git201301170903~raring-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/raring-grizzly/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/raring-grizzly/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/p/python-novaclient/python-novaclient_2.10.0.43.g7b124b8+git201301141502~raring-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/python-novaclient/raring-grizzly']Pushed up to revision 62.INFO:root:Storing current commit for next build: 020ff909cc312da0e67f293ea14a81423dac6b15INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-novaclient/grizzly /tmp/tmpHGmLiJ/python-novaclientmk-build-deps -i -r -t apt-get -y /tmp/tmpHGmLiJ/python-novaclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 6f580661f647bf5085edff75689eb28565728acb..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/python-novaclient/raring-grizzly --forcedch -b -D raring --newversion 1:2.10.0.57.g020ff90+git201301170903~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [020ff90] Implement get password for novaclientdch -a [dffd415] Adds tenant network support to the clientdch -a [020de7c] Fix a couple of broken shell testsdch -a [b5f3307] Update hosts API action calls (startup etc.)dch -a [207969f] When logging request include request datadch -a [9e319ec] Add support for instance evacuate.dch -a [2d3e0d9] Fix the help text of add-fixed-ipdch -a [53aee5c] Move from untitest2 to testtools.dch -a [eb7c390] Update README.rstdch -a [6307310] Unify Manager._update behaviourdch -a [4cf314b] Fix some usage messages of 'nova volume-*'debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-novaclient_2.10.0.57.g020ff90+git201301170903~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A python-novaclient_2.10.0.57.g020ff90+git201301170903~raring-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing python-novaclient_2.10.0.57.g020ff90+git201301170903~raring-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include raring-grizzly python-novaclient_2.10.0.57.g020ff90+git201301170903~raring-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/python-novaclient/raring-grizzlyEmail was triggered for: FixedTrigger Success was overridden by another trigger and will not send an email.Sending email for trigger: Fixed-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Fixed: raring_grizzly_python-quantumclient_trunk #25

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_python-quantumclient_trunk
General InformationBUILD SUCCESSBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_python-quantumclient_trunk/25/Project:raring_grizzly_python-quantumclient_trunkDate of build:Thu, 17 Jan 2013 09:07:19 -0500Build duration:3 min 46 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 2 out of the last 5 builds failed.60ChangesNo ChangesConsole Output[...truncated 2993 lines...]gpg: Signature made Thu Jan 17 09:09:15 2013 EST using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "gpg: Signature made Thu Jan 17 09:09:15 2013 EST using RSA key ID 9935ACDCgpg: Good signature from "Openstack Ubuntu Testing Bot (Jenkins Key) "Checking signature on .changesGood signature on /tmp/tmpNS4sWy/python-quantumclient_2.1.33.g798d2c7+git201301170907~raring-0ubuntu1_source.changes.Checking signature on .dscGood signature on /tmp/tmpNS4sWy/python-quantumclient_2.1.33.g798d2c7+git201301170907~raring-0ubuntu1.dsc.Uploading to ppa (via ftp to ppa.launchpad.net):  Uploading python-quantumclient_2.1.33.g798d2c7+git201301170907~raring-0ubuntu1.dsc: done.  Uploading python-quantumclient_2.1.33.g798d2c7+git201301170907~raring.orig.tar.gz: done.  Uploading python-quantumclient_2.1.33.g798d2c7+git201301170907~raring-0ubuntu1.debian.tar.gz: done.  Uploading python-quantumclient_2.1.33.g798d2c7+git201301170907~raring-0ubuntu1_source.changes: done.Successfully uploaded packages.INFO:root:Installing build artifacts into /var/lib/jenkins/www/aptDEBUG:root:['reprepro', '--waitforlock', '10', '-Vb', '/var/lib/jenkins/www/apt', 'include', 'raring-grizzly', 'python-quantumclient_2.1.33.g798d2c7+git201301170907~raring-0ubuntu1_amd64.changes']Exporting indices...Successfully created '/var/lib/jenkins/www/apt/dists/raring-grizzly/Release.gpg.new'Successfully created '/var/lib/jenkins/www/apt/dists/raring-grizzly/InRelease.new'Deleting files no longer referenced...deleting and forgetting pool/main/p/python-quantumclient/python-quantumclient_2.1.28.gd935757+git201301140431~raring-0ubuntu1_all.debINFO:root:Pushing changes back to bzr testing branchDEBUG:root:['bzr', 'push', 'lp:~openstack-ubuntu-testing/python-quantumclient/raring-grizzly']Pushed up to revision 20.INFO:root:Storing current commit for next build: 4d7c6b6ec7c9e3afbc238f70f09dda4274941217INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/python-quantumclient/grizzly /tmp/tmpNS4sWy/python-quantumclientmk-build-deps -i -r -t apt-get -y /tmp/tmpNS4sWy/python-quantumclient/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log ee3ab2d7afb57abf574a31bbb72e4c94dde099df..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/python-quantumclient/raring-grizzly --forcedch -b -D raring --newversion 1:2.1.33.g798d2c7+git201301170907~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [4d7c6b6] Display security group name in security-group-rule-listdch -a [80fe254] Migrate from unittest to testtoolsdch -a [ab5399e] Display subnet cidr information in net-listdch -a [a9d5479] Make "quantum help" to show a list of subcommands.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC python-quantumclient_2.1.33.g798d2c7+git201301170907~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A python-quantumclient_2.1.33.g798d2c7+git201301170907~raring-0ubuntu1.dscdput ppa:openstack-ubuntu-testing/grizzly-trunk-testing python-quantumclient_2.1.33.g798d2c7+git201301170907~raring-0ubuntu1_source.changesreprepro --waitforlock 10 -Vb /var/lib/jenkins/www/apt include raring-grizzly python-quantumclient_2.1.33.g798d2c7+git201301170907~raring-0ubuntu1_amd64.changesbzr push lp:~openstack-ubuntu-testing/python-quantumclient/raring-grizzlyEmail 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 Failure: raring_grizzly_glance_trunk #76

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_glance_trunk/76/Project:raring_grizzly_glance_trunkDate of build:Thu, 17 Jan 2013 09:12:35 -0500Build duration:2 min 52 secBuild cause:Started by user james-pageBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 3 out of the last 5 builds failed.40ChangesRelax version constraint on Webob-1.0.8by saschpeedittools/pip-requiresStub out find_file... fix policy.json test issue.by mark.washenbergereditglance/tests/unit/test_policy.pyUse testtools for unittest base class.by revieweditglance/tests/functional/store/test_swift.pydeleteglance/tests/unit/test_skip_examples.pyeditglance/tests/functional/store/test_filesystem.pyeditglance/tests/functional/v1/test_copy_to_file.pyeditglance/tests/functional/test_bin_glance_control.pyeditglance/tests/functional/v1/test_ssl.pyeditglance/tests/unit/test_cache_middleware.pyeditglance/tests/unit/api/test_common.pyeditglance/tests/functional/v1/test_rbd.pyeditglance/tests/functional/test_cache_middleware.pyeditglance/tests/unit/v1/test_api.pyeditglance/tests/functional/store_utils.pyeditglance/tests/unit/test_migrations.pyeditglance/tests/functional/store/__init__.pyeditglance/tests/utils.pyeditglance/tests/unit/test_auth.pyeditglance/tests/functional/store/test_http.pyeditglance/tests/functional/test_scrubber.pyeditglance/tests/functional/store/test_s3.pyedittools/test-requireseditglance/tests/unit/test_notifier.pyUpdate version code from oslo.by mordrededitMANIFEST.ineditglance/version.pyeditglance/openstack/common/setup.pyeditsetup.pyeditglance/openstack/common/version.pyConsole Output[...truncated 2883 lines...]parsechangelog/debian: warning: debian/changelog(l1): version 'grizzly.2.18.g3de221b+git201301170912~raring-0ubuntu1' is invalid: version number does not start with digitLINE: glance (grizzly.2.18.g3de221b+git201301170912~raring-0ubuntu1) raring; urgency=low dpkg-buildpackage -rfakeroot -d -us -uc -sa -Sparsechangelog/debian: warning: debian/changelog(l1): version 'grizzly.2.18.g3de221b+git201301170912~raring-0ubuntu1' is invalid: version number does not start with digitLINE: glance (grizzly.2.18.g3de221b+git201301170912~raring-0ubuntu1) raring; urgency=lowdpkg-buildpackage: error: version number does not start with digitdpkg-buildpackage: source package glancedpkg-buildpackage: source version grizzly.2.18.g3de221b+git201301170912~raring-0ubuntu1debuild: fatal error at line 1357:dpkg-buildpackage -rfakeroot -d -us -uc -sa -S failedbzr: ERROR: The build failed.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-10810815-68a0-4977-ac2b-c63c7eaec8b2', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-10810815-68a0-4977-ac2b-c63c7eaec8b2', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/glance/grizzly /tmp/tmp3VE04D/glancemk-build-deps -i -r -t apt-get -y /tmp/tmp3VE04D/glance/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 26a13983b8cc3b0276b1115057585126443f0a02..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/glance/raring-grizzly --forcedch -b -D raring --newversion grizzly.2.18.g3de221b+git201301170912~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [1aaacf9] Update version code from oslo.dch -a [b5e60b7] Use testtools for unittest base class.dch -a [8726801] Stub out find_file... fix policy.json test issue.dch -a [cf97f6f] Add import for filesystem_store_datadir config.dch -a [8b1c02a] Update v1/images DELETE so it returns empty body.dch -a [1522be7] Relax version constraint on Webob-1.0.8debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-10810815-68a0-4977-ac2b-c63c7eaec8b2', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-10810815-68a0-4977-ac2b-c63c7eaec8b2', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', 

[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_glance_trunk #77

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_glance_trunk/77/Project:raring_grizzly_glance_trunkDate of build:Thu, 17 Jan 2013 09:22:03 -0500Build duration:2 min 25 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesNo ChangesConsole Output[...truncated 2883 lines...]parsechangelog/debian: warning: debian/changelog(l1): version 'grizzly.2.18.g3de221b+git201301170922~raring-0ubuntu1' is invalid: version number does not start with digitLINE: glance (grizzly.2.18.g3de221b+git201301170922~raring-0ubuntu1) raring; urgency=low dpkg-buildpackage -rfakeroot -d -us -uc -sa -Sparsechangelog/debian: warning: debian/changelog(l1): version 'grizzly.2.18.g3de221b+git201301170922~raring-0ubuntu1' is invalid: version number does not start with digitLINE: glance (grizzly.2.18.g3de221b+git201301170922~raring-0ubuntu1) raring; urgency=lowdpkg-buildpackage: error: version number does not start with digitdpkg-buildpackage: source package glancedpkg-buildpackage: source version grizzly.2.18.g3de221b+git201301170922~raring-0ubuntu1debuild: fatal error at line 1357:dpkg-buildpackage -rfakeroot -d -us -uc -sa -S failedbzr: ERROR: The build failed.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-be00045c-1688-4b27-bae9-47acbf7cc95c', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-be00045c-1688-4b27-bae9-47acbf7cc95c', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/glance/grizzly /tmp/tmpQ3i6rZ/glancemk-build-deps -i -r -t apt-get -y /tmp/tmpQ3i6rZ/glance/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 26a13983b8cc3b0276b1115057585126443f0a02..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/glance/raring-grizzly --forcedch -b -D raring --newversion grizzly.2.18.g3de221b+git201301170922~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [1aaacf9] Update version code from oslo.dch -a [b5e60b7] Use testtools for unittest base class.dch -a [8726801] Stub out find_file... fix policy.json test issue.dch -a [cf97f6f] Add import for filesystem_store_datadir config.dch -a [8b1c02a] Update v1/images DELETE so it returns empty body.dch -a [1522be7] Relax version constraint on Webob-1.0.8debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-be00045c-1688-4b27-bae9-47acbf7cc95c', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-be00045c-1688-4b27-bae9-47acbf7cc95c', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_keystone_trunk #90

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_keystone_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_keystone_trunk/90/Project:raring_grizzly_keystone_trunkDate of build:Thu, 17 Jan 2013 09:20:13 -0500Build duration:5 min 34 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 3 out of the last 5 builds failed.40ChangesNo ChangesConsole Output[...truncated 5731 lines...]Version: 2013.1+git201301170920~raring-0ubuntu1Finished at 20130117-0925Build needed 00:03:05, 12948k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'keystone_2013.1+git201301170920~raring-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'keystone_2013.1+git201301170920~raring-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/keystone/grizzly /tmp/tmpgrGRPa/keystonemk-build-deps -i -r -t apt-get -y /tmp/tmpgrGRPa/keystone/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log 42bd9c7740808bef57d22e950ff8aae326a2212e..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/keystone/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201301170920~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [ed252e0] Allow running of sql against the live DB.dch -a [f6b133d] Test that you can undo & re-apply all migrationsdch -a [acc810d] downgrade user and tenant normalized tables downgraded such that sqlite is supported, toodch -a [52da32c] Auto-detect max SQL migrationdch -a [6c6915b] Safer data migrationsdch -a [36c3b2e] Sync base identity Driver defs with SQL driverdch -a [f237a67] Fix i18n of string templates.dch -a [7a4e373] Enhance wsgi to listen on ipv6 addressdch -a [9c2c4ec] add database string field length checkdch -a [57f1e30] Autoload schema before creating FK's (bug 1098174)dch -a [9089d8e] reorder tables for deletedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC keystone_2013.1+git201301170920~raring-0ubuntu1_source.changessbuild -d raring-grizzly -n -A keystone_2013.1+git201301170920~raring-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'keystone_2013.1+git201301170920~raring-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 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'raring-grizzly', '-n', '-A', 'keystone_2013.1+git201301170920~raring-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: raring_grizzly_glance_trunk #78

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_glance_trunk/78/Project:raring_grizzly_glance_trunkDate of build:Thu, 17 Jan 2013 10:47:56 -0500Build duration:2 min 15 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: 4 out of the last 5 builds failed.20ChangesNo ChangesConsole Output[...truncated 2478 lines...]LINE: glance (auto+git201301171048~raring-0ubuntu1) raring; urgency=low dpkg-buildpackage -rfakeroot -d -us -uc -sa -Sparsechangelog/debian: warning: debian/changelog(l1): version 'auto+git201301171048~raring-0ubuntu1' is invalid: version number does not start with digitLINE: glance (auto+git201301171048~raring-0ubuntu1) raring; urgency=lowdpkg-buildpackage: error: version number does not start with digitdpkg-buildpackage: source package glancedpkg-buildpackage: source version auto+git201301171048~raring-0ubuntu1debuild: fatal error at line 1357:dpkg-buildpackage -rfakeroot -d -us -uc -sa -S failedbzr: ERROR: The build failed.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-c2b358d7-cd6b-4d9a-b61f-d280f7200bdc', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-c2b358d7-cd6b-4d9a-b61f-d280f7200bdc', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.git archive master --format tar --prefix glance-auto-201301171048/git archive master --format tar --prefix glance-auto-201301171048/git log -n1 --no-merges --pretty=format:%Hgit log 26a13983b8cc3b0276b1115057585126443f0a02..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~openstack-ubuntu-testing/glance/grizzly glancebzr merge lp:~openstack-ubuntu-testing/glance/raring-grizzly --forcedch -b -D raring --newversion auto+git201301171048~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [1aaacf9] Update version code from oslo.dch -a [b5e60b7] Use testtools for unittest base class.dch -a [8726801] Stub out find_file... fix policy.json test issue.dch -a [cf97f6f] Add import for filesystem_store_datadir config.dch -a [8b1c02a] Update v1/images DELETE so it returns empty body.dch -a [1522be7] Relax version constraint on Webob-1.0.8debcommitbzr builddeb -S -- -sa -us -ucmk-build-deps -i -r -t apt-get -y /tmp/tmpV6GFvq/glance/debian/controlbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-c2b358d7-cd6b-4d9a-b61f-d280f7200bdc', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-c2b358d7-cd6b-4d9a-b61f-d280f7200bdc', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_quantum_trunk #205

2013-01-17 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/205/Project:precise_grizzly_quantum_trunkDate of build:Thu, 17 Jan 2013 11:01:02 -0500Build duration:2 min 33 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesSend notification on router interface create/deleteby julieneditquantum/db/l3_db.pyeditquantum/tests/unit/test_l3_plugin.pyConsole Output[...truncated 2936 lines...]dch -b -D precise --newversion 2013.1+git201301171101~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [c4004b6] Send notification on router interface create/deletedch -a [e2b9b0d] Fixes inefficiency in quantum.api.v2.base._filtersdch -a [c58bdd3] Refactor hyperv plugin and agent.dch -a [26332dc] _validate_security_groups_on_port was not validating external_idsdch -a [cb3384f] Update WebOb version to >=1.2dch -a [dfebeb7] Ensure that agents also set control_exchangedch -a [d8b0f10] Fix line endings from CRLF to LF.dch -a [20894c3] Fixes import order nitsdch -a [4970636] Fix ATTR_NOT_SPECIFIED comparison errorsdch -a [2d4431d] Add migration for network bindings in NVP plugindch -a [2f7a55b] NEC OpenFlow plugin supports L3 agent RPCdch -a [0748f92] Update latest OSLO.dch -a [53a787d] Catch up RPC context fixes on NEC OpenFlow plugindch -a [d77376e] ensure all enums in loadbalancer models have namesdch -a [8308201] Adding multi switch support to the Cisco Nexus plugindch -a [d60f6ef] Name the securitygrouprules.direction enum.dch -a [ba12d3e] Adds support for deploying Quantum on Windowsdch -a [2d9e479] Adds a Hyper-V Quantum plugindch -a [d5526d6] Add exception validation for subnet used.dch -a [6cd4789] Remove accessing cfg.CONF.DATABASE in nec-agentdch -a [01f3b1f] Inform a client if Quantum provides port filtering featuredch -a [35a90fc] Remove unsused imports in the plugins packagedch -a [b44314f] DHCP agent unable to access port when restartingdch -a [9247776] Remove unused imports in unit testsdch -a [de99585] Latest OSLO updatesdch -a [9db6917] Optimize if/else logic in quantum.api.v2.base.prepare_request_body()dch -a [2b75d6b] Fixes quantum.api.v2.base._filters to be more intuitivedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-c00c9e93-982d-48f7-a821-29c56df8f37d', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-c00c9e93-982d-48f7-a821-29c56df8f37d', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_quantum_trunk #210

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/210/Project:raring_grizzly_quantum_trunkDate of build:Thu, 17 Jan 2013 11:01:53 -0500Build duration:3 min 5 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesSend notification on router interface create/deleteby julieneditquantum/tests/unit/test_l3_plugin.pyeditquantum/db/l3_db.pyConsole Output[...truncated 3569 lines...]dch -a [e2b9b0d] Fixes inefficiency in quantum.api.v2.base._filtersdch -a [c58bdd3] Refactor hyperv plugin and agent.dch -a [26332dc] _validate_security_groups_on_port was not validating external_idsdch -a [cb3384f] Update WebOb version to >=1.2dch -a [dfebeb7] Ensure that agents also set control_exchangedch -a [d8b0f10] Fix line endings from CRLF to LF.dch -a [20894c3] Fixes import order nitsdch -a [4970636] Fix ATTR_NOT_SPECIFIED comparison errorsdch -a [2d4431d] Add migration for network bindings in NVP plugindch -a [2f7a55b] NEC OpenFlow plugin supports L3 agent RPCdch -a [0748f92] Update latest OSLO.dch -a [53a787d] Catch up RPC context fixes on NEC OpenFlow plugindch -a [d77376e] ensure all enums in loadbalancer models have namesdch -a [8308201] Adding multi switch support to the Cisco Nexus plugindch -a [d60f6ef] Name the securitygrouprules.direction enum.dch -a [ba12d3e] Adds support for deploying Quantum on Windowsdch -a [2d9e479] Adds a Hyper-V Quantum plugindch -a [d5526d6] Add exception validation for subnet used.dch -a [6cd4789] Remove accessing cfg.CONF.DATABASE in nec-agentdch -a [01f3b1f] Inform a client if Quantum provides port filtering featuredch -a [35a90fc] Remove unsused imports in the plugins packagedch -a [b44314f] DHCP agent unable to access port when restartingdch -a [9247776] Remove unused imports in unit testsdch -a [faa1733] Use default_notification_level when notificationdch -a [de99585] Latest OSLO updatesdch -a [9db6917] Optimize if/else logic in quantum.api.v2.base.prepare_request_body()dch -a [2b75d6b] Fixes quantum.api.v2.base._filters to be more intuitivedch -a [cfcbc7a] Port to argparse based cfgdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-b7a903fc-5473-492a-b529-84f1262ea57f', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-b7a903fc-5473-492a-b529-84f1262ea57f', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Failure: raring_grizzly_glance_trunk #80

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_glance_trunk/80/Project:raring_grizzly_glance_trunkDate of build:Thu, 17 Jan 2013 11:03:35 -0500Build duration:2 min 55 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 2489 lines...]Perhaps you used the wrong -p or --strip option?The text leading up to this was:--|--- a/etc/glance-registry.conf|+++ b/etc/glance-registry.conf--No file to patch.  Skipping patch.1 out of 1 hunk ignoredPatch sql_conn.patch does not apply (enforce with -f)ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-f1b2bd2b-2380-4865-b4f2-c79afe93cf8c', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-f1b2bd2b-2380-4865-b4f2-c79afe93cf8c', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.git archive master --format tar --prefix auto+git201301171103~raringgit archive master --format tar --prefix auto+git201301171103~raringgit log -n1 --no-merges --pretty=format:%Hgit log 26a13983b8cc3b0276b1115057585126443f0a02..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~openstack-ubuntu-testing/glance/grizzly glancebzr merge lp:~openstack-ubuntu-testing/glance/raring-grizzly --forcedch -b -D raring --newversion auto+git201301171103~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [1aaacf9] Update version code from oslo.dch -a [b5e60b7] Use testtools for unittest base class.dch -a [8726801] Stub out find_file... fix policy.json test issue.dch -a [cf97f6f] Add import for filesystem_store_datadir config.dch -a [8b1c02a] Update v1/images DELETE so it returns empty body.dch -a [1522be7] Relax version constraint on Webob-1.0.8debcommitbzr builddeb -S -- -sa -us -ucmk-build-deps -i -r -t apt-get -y /tmp/tmpAFmLPc/glance/debian/controlbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-f1b2bd2b-2380-4865-b4f2-c79afe93cf8c', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-f1b2bd2b-2380-4865-b4f2-c79afe93cf8c', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_glance_trunk #81

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_glance_trunk/81/Project:raring_grizzly_glance_trunkDate of build:Thu, 17 Jan 2013 11:07:49 -0500Build duration:2 min 27 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 2478 lines...]LINE: glance (auto+git201301171107~raring-0ubuntu1) raring; urgency=low dpkg-buildpackage -rfakeroot -d -us -uc -sa -Sparsechangelog/debian: warning: debian/changelog(l1): version 'auto+git201301171107~raring-0ubuntu1' is invalid: version number does not start with digitLINE: glance (auto+git201301171107~raring-0ubuntu1) raring; urgency=lowdpkg-buildpackage: error: version number does not start with digitdpkg-buildpackage: source package glancedpkg-buildpackage: source version auto+git201301171107~raring-0ubuntu1debuild: fatal error at line 1357:dpkg-buildpackage -rfakeroot -d -us -uc -sa -S failedbzr: ERROR: The build failed.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-b0fa26fc-7f0a-4dfb-84a0-094b07027068', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-b0fa26fc-7f0a-4dfb-84a0-094b07027068', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.git archive master --format tar --prefix glance-201301171107/git archive master --format tar --prefix glance-201301171107/git log -n1 --no-merges --pretty=format:%Hgit log 26a13983b8cc3b0276b1115057585126443f0a02..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~openstack-ubuntu-testing/glance/grizzly glancebzr merge lp:~openstack-ubuntu-testing/glance/raring-grizzly --forcedch -b -D raring --newversion auto+git201301171107~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [1aaacf9] Update version code from oslo.dch -a [b5e60b7] Use testtools for unittest base class.dch -a [8726801] Stub out find_file... fix policy.json test issue.dch -a [cf97f6f] Add import for filesystem_store_datadir config.dch -a [8b1c02a] Update v1/images DELETE so it returns empty body.dch -a [1522be7] Relax version constraint on Webob-1.0.8debcommitbzr builddeb -S -- -sa -us -ucmk-build-deps -i -r -t apt-get -y /tmp/tmpPncmhV/glance/debian/controlbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-b0fa26fc-7f0a-4dfb-84a0-094b07027068', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-b0fa26fc-7f0a-4dfb-84a0-094b07027068', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_glance_trunk #82

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_glance_trunk/82/Project:raring_grizzly_glance_trunkDate of build:Thu, 17 Jan 2013 11:14:44 -0500Build duration:2 min 14 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 2478 lines...]LINE: glance (auto+git201301171114~raring-0ubuntu1) raring; urgency=low dpkg-buildpackage -rfakeroot -d -us -uc -sa -Sparsechangelog/debian: warning: debian/changelog(l1): version 'auto+git201301171114~raring-0ubuntu1' is invalid: version number does not start with digitLINE: glance (auto+git201301171114~raring-0ubuntu1) raring; urgency=lowdpkg-buildpackage: error: version number does not start with digitdpkg-buildpackage: source package glancedpkg-buildpackage: source version auto+git201301171114~raring-0ubuntu1debuild: fatal error at line 1357:dpkg-buildpackage -rfakeroot -d -us -uc -sa -S failedbzr: ERROR: The build failed.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-8d8211cd-6719-4ada-85fd-2b2f818baac7', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-8d8211cd-6719-4ada-85fd-2b2f818baac7', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.git archive master --format tar --prefix glance-auto/git archive master --format tar --prefix glance-auto/git log -n1 --no-merges --pretty=format:%Hgit log 26a13983b8cc3b0276b1115057585126443f0a02..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~openstack-ubuntu-testing/glance/grizzly glancebzr merge lp:~openstack-ubuntu-testing/glance/raring-grizzly --forcedch -b -D raring --newversion auto+git201301171114~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [1aaacf9] Update version code from oslo.dch -a [b5e60b7] Use testtools for unittest base class.dch -a [8726801] Stub out find_file... fix policy.json test issue.dch -a [cf97f6f] Add import for filesystem_store_datadir config.dch -a [8b1c02a] Update v1/images DELETE so it returns empty body.dch -a [1522be7] Relax version constraint on Webob-1.0.8debcommitbzr builddeb -S -- -sa -us -ucmk-build-deps -i -r -t apt-get -y /tmp/tmpLe6MRx/glance/debian/controlbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-8d8211cd-6719-4ada-85fd-2b2f818baac7', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-8d8211cd-6719-4ada-85fd-2b2f818baac7', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_glance_trunk #83

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_glance_trunk/83/Project:raring_grizzly_glance_trunkDate of build:Thu, 17 Jan 2013 11:20:00 -0500Build duration:2 min 15 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 2478 lines...]LINE: glance (auto+git201301171120~raring-0ubuntu1) raring; urgency=low dpkg-buildpackage -rfakeroot -d -us -uc -sa -Sparsechangelog/debian: warning: debian/changelog(l1): version 'auto+git201301171120~raring-0ubuntu1' is invalid: version number does not start with digitLINE: glance (auto+git201301171120~raring-0ubuntu1) raring; urgency=lowdpkg-buildpackage: error: version number does not start with digitdpkg-buildpackage: source package glancedpkg-buildpackage: source version auto+git201301171120~raring-0ubuntu1debuild: fatal error at line 1357:dpkg-buildpackage -rfakeroot -d -us -uc -sa -S failedbzr: ERROR: The build failed.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-049dfe09-e70d-4856-b086-b95cfaecffbf', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-049dfe09-e70d-4856-b086-b95cfaecffbf', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.git archive master --format tar --prefix glance-auto+git201301171120~raring/git archive master --format tar --prefix glance-auto+git201301171120~raring/git log -n1 --no-merges --pretty=format:%Hgit log 26a13983b8cc3b0276b1115057585126443f0a02..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~openstack-ubuntu-testing/glance/grizzly glancebzr merge lp:~openstack-ubuntu-testing/glance/raring-grizzly --forcedch -b -D raring --newversion auto+git201301171120~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [1aaacf9] Update version code from oslo.dch -a [b5e60b7] Use testtools for unittest base class.dch -a [8726801] Stub out find_file... fix policy.json test issue.dch -a [cf97f6f] Add import for filesystem_store_datadir config.dch -a [8b1c02a] Update v1/images DELETE so it returns empty body.dch -a [1522be7] Relax version constraint on Webob-1.0.8debcommitbzr builddeb -S -- -sa -us -ucmk-build-deps -i -r -t apt-get -y /tmp/tmpFM5TSn/glance/debian/controlbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-049dfe09-e70d-4856-b086-b95cfaecffbf', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-049dfe09-e70d-4856-b086-b95cfaecffbf', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_glance_trunk #84

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_glance_trunk/84/Project:raring_grizzly_glance_trunkDate of build:Thu, 17 Jan 2013 11:22:36 -0500Build duration:2 min 11 secBuild cause:Started by user zulBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 2480 lines...]raise Exception("Versioning for this project requires either an sdist"Exception: Versioning for this project requires either an sdist tarball, or access to an upstream git repository.dh_auto_clean: python setup.py clean -a returned exit code 1make[1]: *** [override_dh_auto_clean] Error 1make[1]: Leaving directory `/tmp/tmpDFL1gd/build-area/glance-2013.1+git201301171122~raring'make: *** [clean] Error 2dpkg-buildpackage: error: fakeroot debian/rules clean gave error exit status 2debuild: fatal error at line 1357:dpkg-buildpackage -rfakeroot -d -us -uc -sa -S failedbzr: ERROR: The build failed.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-41e0766b-fd18-418a-9ace-a5e12c1e52a3', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-41e0766b-fd18-418a-9ace-a5e12c1e52a3', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.git archive master --format tar --prefix glance-2013.1+git201301171122~raring/git archive master --format tar --prefix glance-2013.1+git201301171122~raring/git log -n1 --no-merges --pretty=format:%Hgit log 26a13983b8cc3b0276b1115057585126443f0a02..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~openstack-ubuntu-testing/glance/grizzly glancebzr merge lp:~openstack-ubuntu-testing/glance/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201301171122~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [1aaacf9] Update version code from oslo.dch -a [b5e60b7] Use testtools for unittest base class.dch -a [8726801] Stub out find_file... fix policy.json test issue.dch -a [cf97f6f] Add import for filesystem_store_datadir config.dch -a [8b1c02a] Update v1/images DELETE so it returns empty body.dch -a [1522be7] Relax version constraint on Webob-1.0.8debcommitbzr builddeb -S -- -sa -us -ucmk-build-deps -i -r -t apt-get -y /tmp/tmpDFL1gd/glance/debian/controlbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-41e0766b-fd18-418a-9ace-a5e12c1e52a3', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-41e0766b-fd18-418a-9ace-a5e12c1e52a3', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_glance_trunk #85

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_glance_trunk/85/Project:raring_grizzly_glance_trunkDate of build:Thu, 17 Jan 2013 12:50:13 -0500Build duration:2 min 20 secBuild cause:Started by user James PageBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 2480 lines...]raise Exception("Versioning for this project requires either an sdist"Exception: Versioning for this project requires either an sdist tarball, or access to an upstream git repository.dh_auto_clean: python setup.py clean -a returned exit code 1make[1]: *** [override_dh_auto_clean] Error 1make[1]: Leaving directory `/tmp/tmp8cf9Zi/build-area/glance-2013.1+git201301171250~raring'make: *** [clean] Error 2dpkg-buildpackage: error: fakeroot debian/rules clean gave error exit status 2debuild: fatal error at line 1357:dpkg-buildpackage -rfakeroot -d -us -uc -sa -S failedbzr: ERROR: The build failed.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-c852e2f5-bb48-4222-a190-bc7199510d25', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-c852e2f5-bb48-4222-a190-bc7199510d25', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.git archive master --format tar --prefix glance-2013.1+git201301171250~raring/git archive master --format tar --prefix glance-2013.1+git201301171250~raring/git log -n1 --no-merges --pretty=format:%Hgit log 26a13983b8cc3b0276b1115057585126443f0a02..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~openstack-ubuntu-testing/glance/grizzly glancebzr merge lp:~openstack-ubuntu-testing/glance/raring-grizzly --forcedch -b -D raring --newversion 2013.1+git201301171250~raring-0ubuntu1 Automated Ubuntu testing build:dch -a [1aaacf9] Update version code from oslo.dch -a [b5e60b7] Use testtools for unittest base class.dch -a [8726801] Stub out find_file... fix policy.json test issue.dch -a [cf97f6f] Add import for filesystem_store_datadir config.dch -a [8b1c02a] Update v1/images DELETE so it returns empty body.dch -a [1522be7] Relax version constraint on Webob-1.0.8debcommitbzr builddeb -S -- -sa -us -ucmk-build-deps -i -r -t apt-get -y /tmp/tmp8cf9Zi/glance/debian/controlbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-c852e2f5-bb48-4222-a190-bc7199510d25', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-c852e2f5-bb48-4222-a190-bc7199510d25', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_keystone_trunk #92

2013-01-17 Thread openstack-testing-bot
Title: precise_grizzly_keystone_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_keystone_trunk/92/Project:precise_grizzly_keystone_trunkDate of build:Thu, 17 Jan 2013 13:01:10 -0500Build duration:4 min 21 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 4232 lines...]Distribution: precise-grizzlyFail-Stage: buildHost Architecture: amd64Install-Time: 64Job: keystone_2013.1+git201301171301~precise-0ubuntu1.dscMachine Architecture: amd64Package: keystonePackage-Time: 174Source-Version: 2013.1+git201301171301~precise-0ubuntu1Space: 12932Status: attemptedVersion: 2013.1+git201301171301~precise-0ubuntu1Finished at 20130117-1305Build needed 00:02:54, 12932k disc spaceERROR:root:Error occurred during package creation/build: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'keystone_2013.1+git201301171301~precise-0ubuntu1.dsc']' returned non-zero exit status 2ERROR:root:Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'keystone_2013.1+git201301171301~precise-0ubuntu1.dsc']' returned non-zero exit status 2INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/keystone/grizzly /tmp/tmpcPJhil/keystonemk-build-deps -i -r -t apt-get -y /tmp/tmpcPJhil/keystone/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hbzr merge lp:~openstack-ubuntu-testing/keystone/precise-grizzly --forcedch -b -D precise --newversion 2013.1+git201301171301~precise-0ubuntu1 Automated Ubuntu testing build:dch -a No change rebuild.debcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucdebsign -k9935ACDC keystone_2013.1+git201301171301~precise-0ubuntu1_source.changessbuild -d precise-grizzly -n -A keystone_2013.1+git201301171301~precise-0ubuntu1.dscTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'keystone_2013.1+git201301171301~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 141, in raise esubprocess.CalledProcessError: Command '['sbuild', '-d', 'precise-grizzly', '-n', '-A', 'keystone_2013.1+git201301171301~precise-0ubuntu1.dsc']' returned non-zero exit status 2Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_folsom_keystone_stable #84

2013-01-17 Thread openstack-testing-bot
Title: precise_folsom_keystone_stable
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_folsom_keystone_stable/84/Project:precise_folsom_keystone_stableDate of build:Thu, 17 Jan 2013 13:02:11 -0500Build duration:2 min 1 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesNo ChangesConsole Output[...truncated 1479 lines...]Hunk #5 succeeded at 444 (offset 28 lines).Hunk #6 succeeded at 508 (offset 28 lines).Hunk #7 succeeded at 628 (offset 28 lines).Hunk #8 succeeded at 643 (offset 28 lines).Hunk #9 succeeded at 676 (offset 28 lines).Hunk #10 succeeded at 686 (offset 28 lines).Hunk #11 succeeded at 782 (offset 28 lines).patching file tests/test_keystoneclient.pyHunk #2 FAILED at 784.1 out of 6 hunks FAILED -- rejects in file tests/test_keystoneclient.pyPatch fix-ubuntu-tests.patch does not apply (enforce with -f)ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-0abab272-776c-4826-abcb-8aea9782b439', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-0abab272-776c-4826-abcb-8aea9782b439', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.bzr branch lp:~openstack-ubuntu-testing/keystone/folsom /tmp/tmpVVo9mf/keystonemk-build-deps -i -r -t apt-get -y /tmp/tmpVVo9mf/keystone/debian/controlpython setup.py sdistgit log -n1 --no-merges --pretty=format:%Hgit log c387f84db41c325abb09ec547870e7f44e12cd90..HEAD --no-merges --pretty=format:[%h] %sbzr merge lp:~openstack-ubuntu-testing/keystone/precise-folsom --forcedch -b -D precise --newversion 2012.2.3+git201301171302~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [ec7b94d] Render content-type appropriate 404 (bug 1089987)dch -a [9e300b7] Test 0.2.0 keystoneclient to avoid new depsdch -a [70e55f9] Fix catalog when services have no URLdch -a [6c95b73] Unparseable endpoint URL's should raise friendly errordch -a [ec06625] Ensure serviceCatalog is list when empty, not dictdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-0abab272-776c-4826-abcb-8aea9782b439', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-0abab272-776c-4826-abcb-8aea9782b439', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_quantum_trunk #206

2013-01-17 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/206/Project:precise_grizzly_quantum_trunkDate of build:Thu, 17 Jan 2013 14:01:12 -0500Build duration:1 min 55 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesProvide atomic database access nvp pluginby aroseneditquantum/plugins/nicira/nicira_nvp_plugin/QuantumPlugin.pyUpdate Oslo rpc moduleby zhongyue.naheditquantum/openstack/common/rpc/impl_zmq.pyeditquantum/openstack/common/rpc/impl_qpid.pyMore unittests for quantum.api.v2.baseby zhongyue.naheditquantum/tests/unit/test_api_v2.pyFix downgrade revision to make db migration linearby motokieditquantum/db/migration/alembic_migrations/versions/1d76643bcec4_nvp_netbinding.pyConsole Output[...truncated 2953 lines...]dch -a [e2b9b0d] Fixes inefficiency in quantum.api.v2.base._filtersdch -a [c58bdd3] Refactor hyperv plugin and agent.dch -a [3964475] Update Oslo rpc moduledch -a [8adb519] Provide atomic database access nvp plugindch -a [26332dc] _validate_security_groups_on_port was not validating external_idsdch -a [cb3384f] Update WebOb version to >=1.2dch -a [dfebeb7] Ensure that agents also set control_exchangedch -a [d8b0f10] Fix line endings from CRLF to LF.dch -a [20894c3] Fixes import order nitsdch -a [4970636] Fix ATTR_NOT_SPECIFIED comparison errorsdch -a [2d4431d] Add migration for network bindings in NVP plugindch -a [2f7a55b] NEC OpenFlow plugin supports L3 agent RPCdch -a [0748f92] Update latest OSLO.dch -a [53a787d] Catch up RPC context fixes on NEC OpenFlow plugindch -a [d77376e] ensure all enums in loadbalancer models have namesdch -a [8308201] Adding multi switch support to the Cisco Nexus plugindch -a [d60f6ef] Name the securitygrouprules.direction enum.dch -a [ba12d3e] Adds support for deploying Quantum on Windowsdch -a [2d9e479] Adds a Hyper-V Quantum plugindch -a [d5526d6] Add exception validation for subnet used.dch -a [6cd4789] Remove accessing cfg.CONF.DATABASE in nec-agentdch -a [01f3b1f] Inform a client if Quantum provides port filtering featuredch -a [35a90fc] Remove unsused imports in the plugins packagedch -a [b44314f] DHCP agent unable to access port when restartingdch -a [9247776] Remove unused imports in unit testsdch -a [de99585] Latest OSLO updatesdch -a [9db6917] Optimize if/else logic in quantum.api.v2.base.prepare_request_body()dch -a [2b75d6b] Fixes quantum.api.v2.base._filters to be more intuitivedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-dd61b5d8-c460-4051-a8a4-6f50ea2ea1be', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-dd61b5d8-c460-4051-a8a4-6f50ea2ea1be', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #487

2013-01-17 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/487/Project:precise_grizzly_nova_trunkDate of build:Thu, 17 Jan 2013 14:12:12 -0500Build duration:3 min 0 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesValidated device_name value in block device mapby unmesh.gurjareditnova/api/openstack/compute/servers.pyeditnova/tests/api/openstack/compute/test_servers.pyFix nova.availability_zones docstringby jogoeditnova/availability_zones.pysync latest log and lockutils from osloby jogoeditnova/openstack/common/log.pyeditnova/openstack/common/lockutils.pyMake nova-api logs more usefulby jogoeditnova/api/openstack/wsgi.pyenforce server_id can only be uuid or intby sdagueeditnova/utils.pyeditnova/compute/api.pyeditnova/tests/test_utils.pylibvirt: Optimize test_connection and capabilitiesby vishvanandaeditnova/tests/test_libvirt.pyeditnova/virt/libvirt/driver.pyConsole Output[...truncated 5877 lines...]dch -a [a3eaf78] Reject user ports that have MACs the hypervisor cannot use.dch -a [1329899] Remove unused import.dch -a [7855afe] Move migration_get_..._by_host_and_node to conductordch -a [41e0b40] Make resource tracker use conductor for migration updatesdch -a [a0ae2e2] minor improvements to nova/tests/test_metadata.pydch -a [4b9bd91] Cells: Add some cells support to admin_actions extensiondch -a [fc42f76] Populate service list with availability zone and correct unit testdch -a [fa96bbf] Add 'devname' to nova.network.model.VIF classdch -a [a0c3e67] Use testrepository setuptools support.dch -a [12e38d9] Cleaning up exception handlingdch -a [6b4ad2d] Cells: Add cells API extensiondch -a [f6c205f] More HostAPI() cleanup for cells.dch -a [3824352] Renames the new os-networks extensiondch -a [6130aac] enables admin to view instance fault "details"dch -a [327989e] Fix problem with ipv6 link-local address(es)dch -a [313279f] enable hacking.py self testsdch -a [71fecfa] Correct docstring on sizelimit middleware.dch -a [b71a459] sync latest log and lockutils from oslodch -a [1e1a454] Fix nova.availability_zones docstringdch -a [1dacde8] use postgresql INET datatype for storing IPsdch -a [e0ac5be] Cells: Commit resize quota reservations immediatelydch -a [0668194] Move network call from compute API to the managerdch -a [bc7dc55] Make sure reboot_instance uses updated instancedch -a [f51a285] Implements getPasswordData for ec2dch -a [3b5679e] Validated device_name value in block device mapdch -a [733712b] Expand quota loggingdch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-9875a9ff-ec98-47d6-b19a-95f447d4e56e', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-9875a9ff-ec98-47d6-b19a-95f447d4e56e', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_nova_trunk #496

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/496/Project:raring_grizzly_nova_trunkDate of build:Thu, 17 Jan 2013 14:31:10 -0500Build duration:5 min 15 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesClean up get_instance_id_by_floating_addressby jogoeditnova/db/sqlalchemy/api.pyeditnova/db/api.pyeditnova/network/manager.pyReduce number of iptable-save restore loopsby jogoeditnova/tests/test_libvirt.pyeditnova/tests/network/test_linux_net.pyeditnova/tests/xenapi/stubs.pyeditnova/tests/test_xenapi.pyeditnova/network/linux_net.pyConsole Output[...truncated 4460 lines...]dch -a [39f80b8] Adding configdrive to xenapi.dch -a [3b5679e] Validated device_name value in block device mapdch -a [038ca9b] Fix libvirt resume function call to get_domain_xmldch -a [96c04dd] Make it clearer that network.api.API is nova-network specific.dch -a [97f0ec7] Access instance as dict, not object in xenapidch -a [733712b] Expand quota loggingdch -a [745335b] Move logic from os-api-host into computedch -a [7a77dd7] Create a directory for servicegroup drivers.dch -a [5731852] Move update_instance_info_cache to conductor.dch -a [bda08f6] Change ComputerDriver.legacy_nwinfo to raise by default.dch -a [3934fa5] Cleanup pyflakes in nova-managedch -a [ce098cc] Add user/tenant shim to RequestContextdch -a [3a0eb6d] Add host name to log message for _local_deletedch -a [4babf7d] Make Quantum plugin fill in the 'bridge' namedch -a [f863697] Make nova network manager fill in vif_typedch -a [67cd497] Add some constants to the network model for drivers to usedch -a [bcb9983] Move libvirt VIF XML config into designer.pydch -a [567bbd1] Remove bogus 'unplug' calls from libvirt VIF testdch -a [abc9a0d] Update instance's cell_name in API cell.dch -a [f362b36] Fix test cases in integrated.test_multiprocess_apidch -a [35328dd] Added sample tests to FlavorSwap API.dch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [73cb9f6] Fix pyflakes issues in integrated testsdch -a [477722a] Fix lintstack check for multi-patch reviewsdch -a [680a3ce] xenapi: Remove dead code, moves, testsdch -a [4ff4edd] Upgrade WebOb to 1.2.3dch -a [e87c241] Allow pinging own float when using fixed gatewaydch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-7df51fe3-5227-4daf-85d6-e0dcc1c41f42', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-7df51fe3-5227-4daf-85d6-e0dcc1c41f42', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_quantum_trunk #207

2013-01-17 Thread openstack-testing-bot
Title: precise_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_quantum_trunk/207/Project:precise_grizzly_quantum_trunkDate of build:Thu, 17 Jan 2013 15:01:11 -0500Build duration:1 min 51 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesConfig lockutils to use a temp path for tests.by mnewbyeditquantum/tests/unit/__init__.pyConsole Output[...truncated 2956 lines...]dch -a [e2b9b0d] Fixes inefficiency in quantum.api.v2.base._filtersdch -a [c58bdd3] Refactor hyperv plugin and agent.dch -a [3964475] Update Oslo rpc moduledch -a [8adb519] Provide atomic database access nvp plugindch -a [26332dc] _validate_security_groups_on_port was not validating external_idsdch -a [cb3384f] Update WebOb version to >=1.2dch -a [dfebeb7] Ensure that agents also set control_exchangedch -a [d8b0f10] Fix line endings from CRLF to LF.dch -a [20894c3] Fixes import order nitsdch -a [4970636] Fix ATTR_NOT_SPECIFIED comparison errorsdch -a [2d4431d] Add migration for network bindings in NVP plugindch -a [2f7a55b] NEC OpenFlow plugin supports L3 agent RPCdch -a [0748f92] Update latest OSLO.dch -a [53a787d] Catch up RPC context fixes on NEC OpenFlow plugindch -a [d77376e] ensure all enums in loadbalancer models have namesdch -a [8308201] Adding multi switch support to the Cisco Nexus plugindch -a [d60f6ef] Name the securitygrouprules.direction enum.dch -a [ba12d3e] Adds support for deploying Quantum on Windowsdch -a [2d9e479] Adds a Hyper-V Quantum plugindch -a [d5526d6] Add exception validation for subnet used.dch -a [6cd4789] Remove accessing cfg.CONF.DATABASE in nec-agentdch -a [01f3b1f] Inform a client if Quantum provides port filtering featuredch -a [35a90fc] Remove unsused imports in the plugins packagedch -a [b44314f] DHCP agent unable to access port when restartingdch -a [9247776] Remove unused imports in unit testsdch -a [de99585] Latest OSLO updatesdch -a [9db6917] Optimize if/else logic in quantum.api.v2.base.prepare_request_body()dch -a [2b75d6b] Fixes quantum.api.v2.base._filters to be more intuitivedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-247212ec-cbac-4cb8-9250-240103a39463', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-247212ec-cbac-4cb8-9250-240103a39463', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_quantum_trunk #212

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/212/Project:raring_grizzly_quantum_trunkDate of build:Thu, 17 Jan 2013 15:01:11 -0500Build duration:2 min 43 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesConfig lockutils to use a temp path for tests.by mnewbyeditquantum/tests/unit/__init__.pyConsole Output[...truncated 3589 lines...]dch -a [3964475] Update Oslo rpc moduledch -a [8adb519] Provide atomic database access nvp plugindch -a [26332dc] _validate_security_groups_on_port was not validating external_idsdch -a [cb3384f] Update WebOb version to >=1.2dch -a [dfebeb7] Ensure that agents also set control_exchangedch -a [d8b0f10] Fix line endings from CRLF to LF.dch -a [20894c3] Fixes import order nitsdch -a [4970636] Fix ATTR_NOT_SPECIFIED comparison errorsdch -a [2d4431d] Add migration for network bindings in NVP plugindch -a [2f7a55b] NEC OpenFlow plugin supports L3 agent RPCdch -a [0748f92] Update latest OSLO.dch -a [53a787d] Catch up RPC context fixes on NEC OpenFlow plugindch -a [d77376e] ensure all enums in loadbalancer models have namesdch -a [8308201] Adding multi switch support to the Cisco Nexus plugindch -a [d60f6ef] Name the securitygrouprules.direction enum.dch -a [ba12d3e] Adds support for deploying Quantum on Windowsdch -a [2d9e479] Adds a Hyper-V Quantum plugindch -a [d5526d6] Add exception validation for subnet used.dch -a [6cd4789] Remove accessing cfg.CONF.DATABASE in nec-agentdch -a [01f3b1f] Inform a client if Quantum provides port filtering featuredch -a [35a90fc] Remove unsused imports in the plugins packagedch -a [b44314f] DHCP agent unable to access port when restartingdch -a [9247776] Remove unused imports in unit testsdch -a [faa1733] Use default_notification_level when notificationdch -a [de99585] Latest OSLO updatesdch -a [9db6917] Optimize if/else logic in quantum.api.v2.base.prepare_request_body()dch -a [2b75d6b] Fixes quantum.api.v2.base._filters to be more intuitivedch -a [cfcbc7a] Port to argparse based cfgdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-ead0fa25-0720-41d5-8b26-a6ffd1b4adea', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-ead0fa25-0720-41d5-8b26-a6ffd1b4adea', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_nova_trunk #489

2013-01-17 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/489/Project:precise_grizzly_nova_trunkDate of build:Thu, 17 Jan 2013 16:31:12 -0500Build duration:3 min 7 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesCreate ports in quantum matching hypervisor MAC addresses.by robertceditnova/tests/network/test_quantumv2.pyeditnova/network/quantumv2/api.pyeditnova/exception.pyConsole Output[...truncated 5886 lines...]dch -a [f0539d4] Reduce number of iptable-save restore loopsdch -a [1c7d4fb] Clean up get_instance_id_by_floating_addressdch -a [7855afe] Move migration_get_..._by_host_and_node to conductordch -a [41e0b40] Make resource tracker use conductor for migration updatesdch -a [a0ae2e2] minor improvements to nova/tests/test_metadata.pydch -a [4b9bd91] Cells: Add some cells support to admin_actions extensiondch -a [fc42f76] Populate service list with availability zone and correct unit testdch -a [fa96bbf] Add 'devname' to nova.network.model.VIF classdch -a [a0c3e67] Use testrepository setuptools support.dch -a [12e38d9] Cleaning up exception handlingdch -a [6b4ad2d] Cells: Add cells API extensiondch -a [f6c205f] More HostAPI() cleanup for cells.dch -a [3824352] Renames the new os-networks extensiondch -a [6130aac] enables admin to view instance fault "details"dch -a [327989e] Fix problem with ipv6 link-local address(es)dch -a [313279f] enable hacking.py self testsdch -a [71fecfa] Correct docstring on sizelimit middleware.dch -a [b71a459] sync latest log and lockutils from oslodch -a [1e1a454] Fix nova.availability_zones docstringdch -a [1dacde8] use postgresql INET datatype for storing IPsdch -a [e0ac5be] Cells: Commit resize quota reservations immediatelydch -a [0668194] Move network call from compute API to the managerdch -a [bc7dc55] Make sure reboot_instance uses updated instancedch -a [f51a285] Implements getPasswordData for ec2dch -a [3b5679e] Validated device_name value in block device mapdch -a [733712b] Expand quota loggingdch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-ea4ce105-d7ce-4f1e-9e2a-5a6f73fb2dfd', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-ea4ce105-d7ce-4f1e-9e2a-5a6f73fb2dfd', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_nova_trunk #497

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_nova_trunk/497/Project:raring_grizzly_nova_trunkDate of build:Thu, 17 Jan 2013 16:31:11 -0500Build duration:4 min 48 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesCreate ports in quantum matching hypervisor MAC addresses.by robertceditnova/tests/network/test_quantumv2.pyeditnova/network/quantumv2/api.pyeditnova/exception.pyConsole Output[...truncated 4463 lines...]dch -a [39f80b8] Adding configdrive to xenapi.dch -a [3b5679e] Validated device_name value in block device mapdch -a [038ca9b] Fix libvirt resume function call to get_domain_xmldch -a [96c04dd] Make it clearer that network.api.API is nova-network specific.dch -a [97f0ec7] Access instance as dict, not object in xenapidch -a [733712b] Expand quota loggingdch -a [745335b] Move logic from os-api-host into computedch -a [7a77dd7] Create a directory for servicegroup drivers.dch -a [5731852] Move update_instance_info_cache to conductor.dch -a [bda08f6] Change ComputerDriver.legacy_nwinfo to raise by default.dch -a [3934fa5] Cleanup pyflakes in nova-managedch -a [ce098cc] Add user/tenant shim to RequestContextdch -a [3a0eb6d] Add host name to log message for _local_deletedch -a [4babf7d] Make Quantum plugin fill in the 'bridge' namedch -a [f863697] Make nova network manager fill in vif_typedch -a [67cd497] Add some constants to the network model for drivers to usedch -a [bcb9983] Move libvirt VIF XML config into designer.pydch -a [567bbd1] Remove bogus 'unplug' calls from libvirt VIF testdch -a [abc9a0d] Update instance's cell_name in API cell.dch -a [f362b36] Fix test cases in integrated.test_multiprocess_apidch -a [35328dd] Added sample tests to FlavorSwap API.dch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [73cb9f6] Fix pyflakes issues in integrated testsdch -a [477722a] Fix lintstack check for multi-patch reviewsdch -a [680a3ce] xenapi: Remove dead code, moves, testsdch -a [4ff4edd] Upgrade WebOb to 1.2.3dch -a [e87c241] Allow pinging own float when using fixed gatewaydch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-f391261f-9205-4a3a-8172-c3c978771d4c', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-f391261f-9205-4a3a-8172-c3c978771d4c', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: precise_grizzly_glance_trunk #78

2013-01-17 Thread openstack-testing-bot
Title: precise_grizzly_glance_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_glance_trunk/78/Project:precise_grizzly_glance_trunkDate of build:Thu, 17 Jan 2013 17:31:10 -0500Build duration:1 min 21 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesReplace custom tearDown with fixtures and cleanup.by mordrededitglance/tests/functional/store/test_filesystem.pyeditglance/tests/unit/test_config.pyeditglance/tests/functional/__init__.pyeditglance/tests/unit/test_s3_store.pyedittools/test-requireseditglance/tests/unit/test_cache_middleware.pyeditglance/tests/unit/test_auth.pyeditglance/tests/unit/base.pyeditglance/tests/unit/test_glance_replicator.pyeditglance/tests/utils.pyeditglance/tests/functional/test_bin_glance_control.pyeditglance/tests/unit/test_swift_store.pyeditglance/tests/unit/v1/test_api.pyeditglance/tests/unit/test_image_cache.pyConsole Output[...truncated 1689 lines...]dpkg-buildpackage: export CXXFLAGS from dpkg-buildflags (origin: vendor): -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-securitydpkg-buildpackage: export FFLAGS from dpkg-buildflags (origin: vendor): -g -O2dpkg-buildpackage: export LDFLAGS from dpkg-buildflags (origin: vendor): -Wl,-Bsymbolic-functions -Wl,-z,relrodpkg-buildpackage: error: version number does not start with digitdpkg-buildpackage: source package glancedpkg-buildpackage: source version auto+git201301171731~precise-0ubuntu1debuild: fatal error at line 1350:dpkg-buildpackage -rfakeroot -d -us -uc -sa -S failedbzr: ERROR: The build failed.ERROR:root:Error occurred during package creation/build: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-eb478c28-b029-4587-bc18-6fae61ac649c', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3ERROR:root:Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-eb478c28-b029-4587-bc18-6fae61ac649c', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3INFO:root:Complete command log:INFO:root:Destroying schroot.git archive master --format tar --prefix glance-auto+git201301171731~precise/git archive master --format tar --prefix glance-auto+git201301171731~precise/git log -n1 --no-merges --pretty=format:%Hgit log 26a13983b8cc3b0276b1115057585126443f0a02..HEAD --no-merges --pretty=format:[%h] %sbzr branch lp:~openstack-ubuntu-testing/glance/grizzly glancebzr merge lp:~openstack-ubuntu-testing/glance/precise-grizzly --forcedch -b -D precise --newversion auto+git201301171731~precise-0ubuntu1 Automated Ubuntu testing build:dch -a [43f8697] Replace custom tearDown with fixtures and cleanup.dch -a [1aaacf9] Update version code from oslo.dch -a [b5e60b7] Use testtools for unittest base class.dch -a [8726801] Stub out find_file... fix policy.json test issue.dch -a [cf97f6f] Add import for filesystem_store_datadir config.dch -a [8b1c02a] Update v1/images DELETE so it returns empty body.dch -a [1522be7] Relax version constraint on Webob-1.0.8debcommitbzr builddeb -S -- -sa -us -ucmk-build-deps -i -r -t apt-get -y /tmp/tmpVNR0Hi/glance/debian/controlbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-eb478c28-b029-4587-bc18-6fae61ac649c', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-eb478c28-b029-4587-bc18-6fae61ac649c', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Jenkins build is back to normal : folsom_coverage #379

2013-01-17 Thread openstack-testing-bot
See http://10.189.74.7:8080/job/folsom_coverage/379/


-- 
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_grizzly_nova_trunk #490

2013-01-17 Thread openstack-testing-bot
Title: precise_grizzly_nova_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/precise_grizzly_nova_trunk/490/Project:precise_grizzly_nova_trunkDate of build:Fri, 18 Jan 2013 00:01:12 -0500Build duration:3 min 13 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesAdd host to instance_faults table.by rconradharriseditnova/compute/manager.pyeditnova/tests/scheduler/test_filter_scheduler.pyeditnova/tests/scheduler/test_chance_scheduler.pyeditnova/scheduler/manager.pyaddnova/db/sqlalchemy/migrate_repo/versions/150_add_host_to_instance_faults.pyeditnova/tests/scheduler/test_scheduler.pyeditnova/tests/compute/test_compute.pyeditnova/scheduler/driver.pyeditnova/db/sqlalchemy/models.pyeditnova/compute/utils.pyConsole Output[...truncated 5890 lines...]dch -a [f0539d4] Reduce number of iptable-save restore loopsdch -a [1c7d4fb] Clean up get_instance_id_by_floating_addressdch -a [7855afe] Move migration_get_..._by_host_and_node to conductordch -a [41e0b40] Make resource tracker use conductor for migration updatesdch -a [a0ae2e2] minor improvements to nova/tests/test_metadata.pydch -a [4b9bd91] Cells: Add some cells support to admin_actions extensiondch -a [fc42f76] Populate service list with availability zone and correct unit testdch -a [fa96bbf] Add 'devname' to nova.network.model.VIF classdch -a [a0c3e67] Use testrepository setuptools support.dch -a [12e38d9] Cleaning up exception handlingdch -a [6b4ad2d] Cells: Add cells API extensiondch -a [f6c205f] More HostAPI() cleanup for cells.dch -a [3824352] Renames the new os-networks extensiondch -a [6130aac] enables admin to view instance fault "details"dch -a [327989e] Fix problem with ipv6 link-local address(es)dch -a [313279f] enable hacking.py self testsdch -a [71fecfa] Correct docstring on sizelimit middleware.dch -a [b71a459] sync latest log and lockutils from oslodch -a [1e1a454] Fix nova.availability_zones docstringdch -a [1dacde8] use postgresql INET datatype for storing IPsdch -a [e0ac5be] Cells: Commit resize quota reservations immediatelydch -a [0668194] Move network call from compute API to the managerdch -a [bc7dc55] Make sure reboot_instance uses updated instancedch -a [f51a285] Implements getPasswordData for ec2dch -a [3b5679e] Validated device_name value in block device mapdch -a [733712b] Expand quota loggingdch -a [4db98fa] Adds a flag to allow configuring a regiondch -a [500e5be] script for configuring a vif in Xen in non-bridged modedebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-92ea17b9-3abc-40b7-a2b0-e9556692ab7b', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'precise-amd64-92ea17b9-3abc-40b7-a2b0-e9556692ab7b', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp


[Openstack-ubuntu-testing-notifications] Build Still Failing: raring_grizzly_quantum_trunk #213

2013-01-17 Thread openstack-testing-bot
Title: raring_grizzly_quantum_trunk
General InformationBUILD FAILUREBuild URL:https://jenkins.qa.ubuntu.com/job/raring_grizzly_quantum_trunk/213/Project:raring_grizzly_quantum_trunkDate of build:Fri, 18 Jan 2013 00:31:10 -0500Build duration:2 min 27 secBuild cause:Started by an SCM changeBuilt on:pkg-builderHealth ReportWDescriptionScoreBuild stability: All recent builds failed.0ChangesDocument that code is on github now in README.by robertceditREADMEConsole Output[...truncated 3592 lines...]dch -a [3964475] Update Oslo rpc moduledch -a [8adb519] Provide atomic database access nvp plugindch -a [26332dc] _validate_security_groups_on_port was not validating external_idsdch -a [cb3384f] Update WebOb version to >=1.2dch -a [dfebeb7] Ensure that agents also set control_exchangedch -a [d8b0f10] Fix line endings from CRLF to LF.dch -a [20894c3] Fixes import order nitsdch -a [4970636] Fix ATTR_NOT_SPECIFIED comparison errorsdch -a [2d4431d] Add migration for network bindings in NVP plugindch -a [2f7a55b] NEC OpenFlow plugin supports L3 agent RPCdch -a [0748f92] Update latest OSLO.dch -a [53a787d] Catch up RPC context fixes on NEC OpenFlow plugindch -a [d77376e] ensure all enums in loadbalancer models have namesdch -a [8308201] Adding multi switch support to the Cisco Nexus plugindch -a [d60f6ef] Name the securitygrouprules.direction enum.dch -a [ba12d3e] Adds support for deploying Quantum on Windowsdch -a [2d9e479] Adds a Hyper-V Quantum plugindch -a [d5526d6] Add exception validation for subnet used.dch -a [6cd4789] Remove accessing cfg.CONF.DATABASE in nec-agentdch -a [01f3b1f] Inform a client if Quantum provides port filtering featuredch -a [35a90fc] Remove unsused imports in the plugins packagedch -a [b44314f] DHCP agent unable to access port when restartingdch -a [9247776] Remove unused imports in unit testsdch -a [faa1733] Use default_notification_level when notificationdch -a [de99585] Latest OSLO updatesdch -a [9db6917] Optimize if/else logic in quantum.api.v2.base.prepare_request_body()dch -a [2b75d6b] Fixes quantum.api.v2.base._filters to be more intuitivedch -a [cfcbc7a] Port to argparse based cfgdebcommitbzr builddeb -S -- -sa -us -ucbzr builddeb -S -- -sa -us -ucTraceback (most recent call last):  File "/var/lib/jenkins/tools/openstack-ubuntu-testing/bin/build-package", line 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-1ebc87aa-9388-4069-8893-c5c66b89b842', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Error in sys.excepthook:Traceback (most recent call last):  File "/usr/lib/python2.7/dist-packages/apport_python_hook.py", line 68, in apport_excepthookbinary = os.path.realpath(os.path.join(os.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 141, in raise esubprocess.CalledProcessError: Command '['/usr/bin/schroot', '-r', '-c', 'raring-amd64-1ebc87aa-9388-4069-8893-c5c66b89b842', '-u', 'jenkins', '--', 'bzr', 'builddeb', '-S', '--', '-sa', '-us', '-uc']' returned non-zero exit status 3Build step 'Execute shell' marked build as failureEmail was triggered for: FailureSending email for trigger: Failure-- 
Mailing list: https://launchpad.net/~openstack-ubuntu-testing-notifications
Post to : openstack-ubuntu-testing-notifications@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack-ubuntu-testing-notifications
More help   : https://help.launchpad.net/ListHelp