lp:~soren/nova/sort-authors

Created by Soren Hansen and last modified
Get this branch:
bzr branch lp:~soren/nova/sort-authors
Only Soren Hansen can upload to this branch. If you are Soren Hansen please log in for upload directions.

Branch merges

Related bugs

Related blueprints

Branch information

Owner:
Soren Hansen
Project:
OpenStack Compute (nova)
Status:
Merged

Recent revisions

694. By Soren Hansen

Re-alphabetise Authors, move extra addressses into .mailmap.

693. By Ricardo Carrillo Cruz

Hi guys

Taking Jay suggestion, i completely got rid of BadParameter and just used ValueError, no point of using a new exception class when there's already something available in Python for that purpose.

Regards

692. By Brian Waldon

Update the Openstack API so that it returns 'addresses'.

This branch should resolve nova bug #713144 (https://bugs.launchpad.net/nova/+bug/713144).

691. By Brian Lamar

I have a bug fix, additional tests for the `limiter` method, and additional commenting for a couple classes in the OpenStack API. Basically I've just tried to jump in somewhere to get my feet wet. Constructive criticism welcome.

690. By Trey Morris

added labels to networks for use in multi-nic
added writing network data to xenstore param-list
added call to agent to reset network
added reset_network call to openstack api

689. By Christian Berendt

Add a command to nova-manage to list fixed ip's.

688. By Christian Berendt

example:

# nova-manage network list
CIDR netmask dhcp_start DNS
xx.xx.35.0/25 255.255.255.128 xx.xx.35.2 None
xx.xx.36.0/25 255.255.255.128 xx.xx.36.2 None

(DNS set to None because networks not yet used..)

687. By Vish Ishaya

Fixes ldapdriver so that it works properly with admin client. It now sanitizes all unicode data to strings before passing it into ldap driver. This may need to be rethought to work properly for internationalization.

686. By termie

Update to our HACKING doc to add examples of our docstring style.

685. By Brian Schott

-from migrate.versioning import exceptions as versioning_exceptions
+
+try:
+ from migrate.versioning import exceptions as versioning_exceptions
+except ImportError:
+ try:
+ # python-migration changed location of exceptions after 1.6.3
+ # See LP Bug #717467
+ from migrate import exceptions as versioning_exceptions
+ except ImportError:
+ sys.exit(_("python-migrate is not installed. Exiting."))

Branch metadata

Branch format:
Branch format 7
Repository format:
Bazaar repository format 2a (needs bzr 1.16 or later)
Stacked on:
lp:~hudson-openstack/nova/trunk
This branch contains Public information 
Everyone can see this information.

Subscribers