]>
review.fuel-infra Code Review - openstack-build/neutron-build.git/log
Jenkins [Mon, 5 Nov 2012 16:34:36 +0000 (16:34 +0000)]
Merge "Use uuidutils.is_uuid_like in quantum.extentions.l3"
Jenkins [Mon, 5 Nov 2012 16:34:27 +0000 (16:34 +0000)]
Merge "Add check for cidr overrapping for adding external gateway"
Zhongyue Luo [Mon, 5 Nov 2012 15:27:49 +0000 (23:27 +0800)]
Use uuidutils.is_uuid_like in quantum.extentions.l3
Change-Id: I82e42aebd45d743ed890190e478294531f7db4e6
Zhongyue Luo [Mon, 5 Nov 2012 14:40:50 +0000 (22:40 +0800)]
Implements _validate_uuid
Validates uuids with uuidutils.is_uuid_like
Reordered validation funtions alphabetically
Change-Id: I4c138d471c420ed520e6c881e07d36478119d12b
Jenkins [Mon, 5 Nov 2012 11:59:32 +0000 (11:59 +0000)]
Merge "Use uuidutils for uuid validation"
Jenkins [Mon, 5 Nov 2012 10:51:56 +0000 (10:51 +0000)]
Merge "Drop lxml dependency"
Zhongyue Luo [Wed, 31 Oct 2012 03:01:33 +0000 (11:01 +0800)]
Use uuidutils for uuid validation
Removed api.v2.attributes import
Removed re import
Fixed if-else statement to enhance readability
Change-Id: Id4c107f3bc8c6eb94ae155814538b8f6081cb93b
Zhongyue Luo [Mon, 5 Nov 2012 05:35:39 +0000 (13:35 +0800)]
Drop lxml dependency
Fixes bug #
1068290
Removed lxml from tools/pip-requires
Removed usused method _to_xml() in quantum.wsgi.XMLDictSerializer
Change-Id: I3410fd8645739abfd853f71efcbb354b58677b18
Zhongyue Luo [Mon, 29 Oct 2012 03:25:54 +0000 (11:25 +0800)]
Add uuidutils module
Added uuidutils to openstack-common.conf file and
updated quantum/openstack/common
Change-Id: If3d3908f666115b3c461e8820c5bafcf1cc69e97
Jenkins [Sun, 4 Nov 2012 07:07:52 +0000 (07:07 +0000)]
Merge "let metaplugin work with plugin which has not l3 extension support"
Jenkins [Fri, 2 Nov 2012 21:08:58 +0000 (21:08 +0000)]
Merge "Clean-up comments in quantum/db/l3_db.py"
Jenkins [Fri, 2 Nov 2012 20:41:45 +0000 (20:41 +0000)]
Merge "db_base_plugin_v2.QuantumDbPluginV2.create_port clean-up"
Zhongyue Luo [Fri, 2 Nov 2012 01:38:21 +0000 (09:38 +0800)]
db_base_plugin_v2.QuantumDbPluginV2.create_port clean-up
Removed redundant dictionary lookups
Change-Id: Iac0e05d81cb26e262501a54576483c821fa55003
Zhongyue Luo [Fri, 2 Nov 2012 03:17:25 +0000 (11:17 +0800)]
Clean-up comments in quantum/db/l3_db.py
Change-Id: I85eaedca8b428ac7ba31f7aa088acb3c21129381
Zhongyue Luo [Fri, 2 Nov 2012 01:42:42 +0000 (09:42 +0800)]
Import order clean-up
Reorder imports by full module path
Change-Id: I50bc2a5ff6cea939049fed8066471b15e84adbe6
Nachi Ueno [Thu, 1 Nov 2012 23:58:25 +0000 (23:58 +0000)]
let metaplugin work with plugin which has not l3 extension support
Fixes bug
1074183
Also Fixes bug
1074184 ( fix get_nework call with fields)
Change-Id: I3bfdb22dd3be8a58cd884629dc5e3385730bb1bc
Jenkins [Thu, 1 Nov 2012 16:07:26 +0000 (16:07 +0000)]
Merge "support 'send_arp_for_ha' option in l3_agent"
Jenkins [Thu, 1 Nov 2012 15:05:41 +0000 (15:05 +0000)]
Merge "Use openstack common log to do logging."
gongysh [Tue, 30 Oct 2012 15:21:46 +0000 (23:21 +0800)]
Use openstack common log to do logging.
Bug #
1073194
We use openstack common log to do logging. At the same time, we will use
quantum logger as our top logger, so that all sub loggers will be set
according to quantum.conf
Change-Id: I5adf72e6031ad437e05c3521864a83757b3e7887
gongysh [Wed, 31 Oct 2012 14:01:35 +0000 (22:01 +0800)]
Put gw_port into router dict result.
Bug #
1069782
We put gw_port into router dict result so that client can get more
information for the result router.
Change-Id: I54cec8a71441a9370c7ba95767a92190bf1c9c21
Nachi Ueno [Fri, 21 Sep 2012 20:52:16 +0000 (20:52 +0000)]
Add check for cidr overrapping for adding external gateway
Fixes bug
1053633
Also add check for cidr overrapping between external gateway and
interfaces
Change-Id: I5bfb2fd96ea467b63e940893979a912caf550deb
justin ljj [Mon, 27 Aug 2012 08:27:23 +0000 (16:27 +0800)]
support 'send_arp_for_ha' option in l3_agent
Fixes bug
1042046
Sending gratuitous ARPs when a external router or a floating
IP was added in order to facilitate HA.
I am using iputils-arping package to send ARP packets. You will need
to install iputils-arping on Ubuntu and iputils on Fedora/RHEL/CentOS.
Arping locates in /usr/bin/arping on Ubuntu and locates in /sbin/arping
on Fedora/RHEL/CentOS.
Change-Id: I125dbc57b90027dc5e99ff0a5d6877843a0b02a5
Gary Kotton [Sat, 27 Oct 2012 03:05:35 +0000 (03:05 +0000)]
pin sqlalchemy to 0.7
The sqlalchemy package 0.8.0b1 released on October 30, 2012
removed SQLSoup
(http://docs.sqlalchemy.org/en/latest/changelog/migration_08.html#sqlsoup)
Ensure that the SqlSoup import is still supported. A number of quantum agents
make use of this code to access the database.
Fixes bug
1073555
Change-Id: I78b27716c6e3eb05d874314f0bc544a917fd5853
Nachi Ueno [Tue, 30 Oct 2012 22:30:21 +0000 (22:30 +0000)]
Remove unused metaplugin agents
Fixes bug
1038840
Change-Id: I891247ebd4e58b950c9254d267a06aadc4602d18
Jenkins [Tue, 30 Oct 2012 08:42:10 +0000 (08:42 +0000)]
Merge "Support external network in probe-create."
Jenkins [Tue, 30 Oct 2012 04:44:41 +0000 (04:44 +0000)]
Merge "Get subnets of router interfaces with an elevated context."
Jenkins [Tue, 30 Oct 2012 03:07:51 +0000 (03:07 +0000)]
Merge "Chmod agent/linux/iptables_manager.py"
Jenkins [Tue, 30 Oct 2012 03:07:09 +0000 (03:07 +0000)]
Merge "Fix exception when port status is updated with linux bridge plugin"
Akihiro MOTOKI [Mon, 29 Oct 2012 13:37:37 +0000 (22:37 +0900)]
Get subnets of router interfaces with an elevated context.
Fixes bug
1057558
A router may have interfaces owned by other tenants (by admin operations).
An elevated context is required to get subnet information for such interfaces.
Change-Id: Iaf24c842c2c1e3c52573e7f9831d5f6d8fc01885
Nachi Ueno [Mon, 29 Oct 2012 20:05:48 +0000 (13:05 -0700)]
Support external network in probe-create.
Fixes bug #
1070960
Change-Id: Ic0d3c56a26fe44359a772f40a7c7d92086a49a28
Jiajun Liu [Mon, 29 Oct 2012 10:26:43 +0000 (18:26 +0800)]
remove unused modules for linuxbridge/ovs plugin agent
fixes bug
1072635 .
Since linuxbridge/ovs plugin agent can not access database any more.
remove unused sqlsouq module.
Change-Id: I0bf02798e2b6e63e1f3690bf0920132ba5dd7e65
Zhongyue Luo [Mon, 29 Oct 2012 05:52:43 +0000 (13:52 +0800)]
Chmod agent/linux/iptables_manager.py
Change file mode bits of iptables_manager.py to 644
Change-Id: I63ab56c44f2e142a80830141e7fe12189a33d49f
Jenkins [Sun, 28 Oct 2012 20:09:15 +0000 (20:09 +0000)]
Merge "Make create_floatingip support transaction"
Jenkins [Sun, 28 Oct 2012 10:36:05 +0000 (10:36 +0000)]
Merge "Update policies"
Jenkins [Sat, 27 Oct 2012 01:18:26 +0000 (01:18 +0000)]
Merge "Quantum Security Groups API"
Jenkins [Fri, 26 Oct 2012 22:18:25 +0000 (22:18 +0000)]
Merge "Remove database access from agents"
Aaron Rosen [Wed, 10 Oct 2012 00:10:27 +0000 (17:10 -0700)]
Quantum Security Groups API
Implements blueprint quantum-security-groups API
In addition the the convention that if a URI has a '-' in it, it's
replaced with a '_'. For example: POST security-groups will convert
the body to {'security_group': ..}
Change-Id: I2c5219ed1d44a43ce1bf03d49df9f5c1af23352b
Jenkins [Fri, 26 Oct 2012 13:18:26 +0000 (13:18 +0000)]
Merge "use object directly instead of the foreigh key to update master db object."
Nachi Ueno [Thu, 25 Oct 2012 21:14:48 +0000 (21:14 +0000)]
Make create_floatingip support transaction
Fixes bug #
1064748
Also added unit test
Change-Id: I82b2031af0a87a92ace9a8b86f89772beaca5e8f
Jenkins [Thu, 25 Oct 2012 17:48:25 +0000 (17:48 +0000)]
Merge "Fix database clear when table does not exist"
Kevin L. Mitchell [Fri, 12 Oct 2012 19:35:42 +0000 (14:35 -0500)]
Update policies
Merge in update openstack-common policy code.
Updates Quantum-specific policy glue code to eliminate deprecated
openstack-common policy interfaces. Also cleans up policy code
to allow for returning fine-grained policy values.
Change-Id: I2951a0de3751bd2ec868e7a661070fed624e4af2
Julien Danjou [Wed, 24 Oct 2012 13:11:24 +0000 (15:11 +0200)]
Notify about router and floating IP usages
This fixes the Quantum side of bug #
1070009
Change-Id: I07c41814a3acfb2749d503fe1bc64ab7707535ee
Signed-off-by: Julien Danjou <julien@danjou.info>
Gary Kotton [Thu, 25 Oct 2012 03:30:24 +0000 (03:30 +0000)]
Fix exception when port status is updated with linux bridge plugin
Fixes bug
1072713
Change-Id: I3466e747764fc379d413d9493cf80ea35552179f
Jenkins [Thu, 25 Oct 2012 01:31:01 +0000 (01:31 +0000)]
Merge "Call iptables without absolute path."
Jenkins [Wed, 24 Oct 2012 20:53:29 +0000 (20:53 +0000)]
Merge "Add MTU support to Linux bridge."
Jenkins [Wed, 24 Oct 2012 19:52:22 +0000 (19:52 +0000)]
Merge "Add unit tests for the ovs quantum agent."
Akihiro MOTOKI [Wed, 24 Oct 2012 13:14:06 +0000 (22:14 +0900)]
Call iptables without absolute path.
Fixes bug
1069966
rootwrap expects the command name is not absolute. We need to call
the command without path to make rootwrap work well.
Change-Id: I6120103908d10ca257d177a320294de06a89c646
gongysh [Wed, 24 Oct 2012 08:13:09 +0000 (16:13 +0800)]
Delete the child object via setting the parent's attribute to None.
Bug #
1070335
We should not operate the foreigh key attribute of parent attribute
directly.
Change-Id: I98dc8eae78fdf67f0e7189e73afba77c6affcc0e
Maru Newby [Tue, 23 Oct 2012 22:25:54 +0000 (22:25 +0000)]
Add unit tests for the ovs quantum agent.
* Supporting the quantum dhcp agent on XenServer/XCP requires
modifying the ovs agent. As no unit tests exist at present for
the ovs agent, this change adds enough test coverage to help
ensure that the modifications to support xen will not break
existing functionality.
* Supports blueprint xenapi-ovs
Change-Id: Ib99414ec02e8910cbb0ce377b1a1e73acd057794
Jenkins [Tue, 23 Oct 2012 20:18:48 +0000 (20:18 +0000)]
Merge "Update default base database to be V2"
Jonathan LaCour [Tue, 23 Oct 2012 19:22:19 +0000 (19:22 +0000)]
Add MTU support to Linux bridge.
Fixes bug
1030932
Added MTU parity to Linux bridge interface driver.
Change-Id: I020b009a32f9317d3bb1224ad03dda291c715e96
justin Lund [Tue, 23 Oct 2012 19:16:09 +0000 (15:16 -0400)]
Correct Intended Audience
Correcting the Initial Audience from Developers to
System Administrators.
Change-Id: I96fd07d657b9049e035ec33ecddcab8bb09552e3
justin Lund [Tue, 23 Oct 2012 18:29:29 +0000 (14:29 -0400)]
Add OpenStack trove classifier for PyPI
Add trove classifier to have the client listed among the
other OpenStack-related projets on PyPI.
Change-Id: Ic07fa4b3717a41fdd74c7447d65037dee7ea7fb7
Jenkins [Tue, 23 Oct 2012 16:35:15 +0000 (16:35 +0000)]
Merge "add test for create subnet with default gateway and conflict allocation pool"
Jenkins [Tue, 23 Oct 2012 15:27:03 +0000 (15:27 +0000)]
Merge "IP subnet validation fixes"
gongysh [Tue, 23 Oct 2012 14:40:26 +0000 (22:40 +0800)]
use object directly instead of the foreigh key to update master db object.
Bug #
1064235
Change-Id: I74fe3e758681c40590de87c82fd093224d329f51
Jenkins [Tue, 23 Oct 2012 14:21:22 +0000 (14:21 +0000)]
Merge "Merge OVSVethInterfaceDriver into OVSInterfaceDriver"
Gary Kotton [Mon, 15 Oct 2012 07:05:38 +0000 (07:05 +0000)]
Remove database access from agents
A flag on the agent and plugin would indicate that the agent could access
the database directly instead of using the RPC interface. This has been
removed.
Change-Id: I2f596a020f971e850f2c92b6597412523d006154
Gary Kotton [Sat, 20 Oct 2012 01:41:29 +0000 (01:41 +0000)]
Fix database clear when table does not exist
Problem occurs when running individual tests.
Change-Id: I5223cf0d66aa5bffeb304dda19c784e31a54a7c0
Jeremy Hanmer [Thu, 18 Oct 2012 23:26:41 +0000 (16:26 -0700)]
IP subnet validation fixes
Fixes bug #
1067959
Assure prefix length is included in CIDR definition.
Change-Id: I32bb3dd1e5bffb409b3adee03015e21cce71caea
Gary Kotton [Fri, 19 Oct 2012 04:16:23 +0000 (04:16 +0000)]
Update default base database to be V2
Fixes bug
1070353
Change-Id: Ie9271dd1ef2597ba74a0fea51ecf151ae2e8f7dd
Michael Still [Thu, 18 Oct 2012 18:43:37 +0000 (11:43 -0700)]
Update common.
policy.py and setup.py are not updated as they cause test failures.
I will investigate them separately.
Change-Id: Ie46626e67ce5c32baf0eda9f63afb33611d5015a
He Jie Xu [Sat, 13 Oct 2012 10:00:20 +0000 (18:00 +0800)]
add test for create subnet with default gateway and conflict allocation pool
Create subnet with default gateway and conflict allocation pool should return
status code 409:
$ quantum subnet-create net1 --allocation-pool start=10.0.0.1,end=10.0.0.5 \
10.0.0.0/24
Found overlapping allocation pools:{u'start': u'10.0.0.1',
u'end': u'10.0.0.5'} 10.0.0.1 for subnet 10.0.0.0/24.
Change-Id: I8608314ad7899a752eea239dbe224e25c00a375b
Jenkins [Fri, 12 Oct 2012 17:10:09 +0000 (17:10 +0000)]
Merge "correct nvplib to update device_id"
Akihiro MOTOKI [Fri, 28 Sep 2012 13:05:50 +0000 (22:05 +0900)]
Merge OVSVethInterfaceDriver into OVSInterfaceDriver
Fixes bug
1049385
Due to some issues using OVS internal interfaces across namespaces
with OpenFlow controllers (bug
1048681 ), a patch introduced the
OVSVethInterfaceDriver in addition to the base OVSInterfaceDriver.
However, OVSVethInterfaceDriver is just a variation of OVSInterfaceDriver
and the difference is how to create an interface (OVS internal vs veth).
This patch merge OVSVethInterfaceDriver into OVSInterfaceDriver
by introducing a new flag 'ovs_use_veth' (which defaults to False).
Change-Id: Ie8b01e6776bf703f72a9e2a471b24e126f6e2322
Gary Kotton [Mon, 8 Oct 2012 02:44:50 +0000 (02:44 +0000)]
Logging indicates when service starts and terminates
Fixes bug
1064070
The patch adds a log entry indication that the service has started. In
addition to this if there is an "exit" statement in the code, then the
log message will indicate that the service has been terminated.
Change-Id: Idb6cff4b85d26331df2c6e14aa0680e82b4e2cd7
Gary Kotton [Mon, 8 Oct 2012 04:18:11 +0000 (04:18 +0000)]
Ensures port is not created when database exception occurs
Fixes bug
1064261
The port creation code did not correctly treat a database error. That is,
if there was an exception the port would be created and an error returned
to the client.
Change-Id: I6cf36d1c641b46716afb16f228b8daa631099a5d
Jenkins [Mon, 8 Oct 2012 07:31:54 +0000 (07:31 +0000)]
Merge "Improve unit test times"
Jenkins [Mon, 8 Oct 2012 01:25:19 +0000 (01:25 +0000)]
Merge "Update vif driver of Ryu plugin"
Jenkins [Mon, 8 Oct 2012 00:50:46 +0000 (00:50 +0000)]
Merge "Add control_exchange option to common/config.py"
Jenkins [Mon, 8 Oct 2012 00:27:33 +0000 (00:27 +0000)]
Merge "tests/unit/ryu/test_ryu_db: db failure"
Jenkins [Sun, 7 Oct 2012 22:33:47 +0000 (22:33 +0000)]
Merge "get_network in nvp plugin didn't return subnet information"
Gary Kotton [Sat, 6 Oct 2012 02:56:11 +0000 (02:56 +0000)]
Improve unit test times
Revert the change using a temporary file for the database.
The sqlalchemy version is updated to >=0.7.8 (this includes
fixes for memory leaks).
Change-Id: Ib5d128edfef0f8e0afebaf408f7834fa3de2481a
Mark McClain [Fri, 5 Oct 2012 19:51:19 +0000 (15:51 -0400)]
Add control_exchange option to common/config.py
fixes bug
1062517
Follows the instructions in the openstack/common/rpc/__init__.py and
defines a control_exchange option.
Change-Id: I92c50e1aea44954b2c9d62db1df536b9044b6951
Gary Kotton [Fri, 5 Oct 2012 10:07:13 +0000 (06:07 -0400)]
Treat invalid namespace call
Fixes bug
1060559
Change-Id: I29250100416b87f55781fb7e97339f6d3761513f
Aaron Rosen [Thu, 4 Oct 2012 23:18:58 +0000 (16:18 -0700)]
get_network in nvp plugin didn't return subnet information
Adds unit test for show network which checks for subnet.
Fixes bug
1061781
Change-Id: I459a1f11a9e4294c31d002c8dbcfde873e43c800
Isaku Yamahata [Tue, 18 Sep 2012 14:55:14 +0000 (23:55 +0900)]
tests/unit/ryu/test_ryu_db: db failure
Fixes bug
1061408
The unit test of test_ryu_db fails when it is specified to run as follows.
$ ./run_tests.sh quantum.tests.unit.ryu.test_ryu_db
RyuDBTest
test_ofp_server (quantum.tests.unit.ryu.test_ryu_db.RyuDBTest)ERROR
======================================================================
ERROR: test_ofp_server (quantum.tests.unit.ryu.test_ryu_db.RyuDBTest)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/quantum/tests/unit/ryu/test_ryu_db.py", line 30, in setUp
options = {"sql_connection": cfg.CONF.DATABASE.sql_connection}
File "/quantum/openstack/common/cfg.py", line 1039, in __getattr__
return self._get(name)
File "/quantum/openstack/common/cfg.py", line 1361, in _get
value = self._substitute(self._do_get(name, group))
File "/quantum/openstack/common/cfg.py", line 1377, in _do_get
info = self._get_opt_info(name, group)
File "/quantum/openstack/common/cfg.py", line 1470, in _get_opt_info
raise NoSuchOptError(opt_name, group)
NoSuchOptError: no such option: DATABASE
----------------------------------------------------------------------
Ran 1 test in 0.001s
Change-Id: Ie639914c64e6fba10112a58efa7f363615d0c9fd
Aaron Rosen [Thu, 4 Oct 2012 04:52:43 +0000 (21:52 -0700)]
correct nvplib to update device_id
Fixes bug
1061391
Change-Id: Ide8efdfb12dd0f403d7e4f468b1c9f3cc024f9a9
Jenkins [Tue, 2 Oct 2012 18:54:11 +0000 (18:54 +0000)]
Merge "Add quantum-usage-audit"
Doug Hellmann [Tue, 2 Oct 2012 16:34:30 +0000 (12:34 -0400)]
Update rpc and notifier libs from openstack.common
Bring in the latest versions of the rpc and notifications
libraries to fix broken imports in the current version
of master.
Change-Id: I6f545df4622eabdf2f7bf4e9cf155db20bd2c4c1
Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
Julien Danjou [Tue, 2 Oct 2012 11:21:41 +0000 (13:21 +0200)]
Add quantum-usage-audit
This adds a program aiming to send "$resource.exists" notifications regularly
via a cronjob. We will use this in Ceilometer to meter resources usage.
Change-Id: I718c67bfb54b74afb3af262bb08cbfd71531188a
Signed-off-by: Julien Danjou <julien@danjou.info>
Julien Danjou [Tue, 2 Oct 2012 13:37:49 +0000 (15:37 +0200)]
Fix filters default value in get_networks
With that change, if get_networks() is called without fields set to
something, _filter_nets_l3 fails because it tries to call "filters.get()"
where filters is None.
This fixes bug #
1060047
Change-Id: Ia0787e7a278a3562af5409861762f067d71f2cf6
Signed-off-by: Julien Danjou <julien@danjou.info>
Jenkins [Tue, 2 Oct 2012 13:25:07 +0000 (13:25 +0000)]
Merge "Support for several HA RabbitMQ servers."
Somik Behera [Tue, 2 Oct 2012 05:33:12 +0000 (22:33 -0700)]
l3_nat_agent was renamed to l3_agent
and this was missed.
This broke quantum-l3-agent when setup.py was
used to install but did not affect package installs.
This change fixes the issue.
Change-Id: I820d26fba5d2774262577ed4fbae81dc7362e93e
Yoshihiro Kaneko [Mon, 1 Oct 2012 06:56:50 +0000 (15:56 +0900)]
Update vif driver of Ryu plugin
Fixes bug
1059393
This patch allows Ryu plugin to be compatible with Nova Security Groups.
Change-Id: Ief1039f4b73af2e815fed429cd717e64888565c9
Emilien Macchi [Thu, 27 Sep 2012 14:20:29 +0000 (16:20 +0200)]
Support for several HA RabbitMQ servers.
Change-Id: I37f73867ff469133c39bf5f1a7fd48f48b0704d4
ivan-zhu [Fri, 28 Sep 2012 14:36:23 +0000 (22:36 +0800)]
Correct the error message in the Class NoNetworkAvailable
Bug #
1052294
Change "No virtual network is available." to "No tenant
network is available for allocation."
Change-Id: I8e2b40df1afa46522666d51218b82a4deef2ff64
Jenkins [Thu, 27 Sep 2012 07:46:11 +0000 (07:46 +0000)]
Merge "clean notification options in quantum.conf."
Jenkins [Thu, 27 Sep 2012 07:39:42 +0000 (07:39 +0000)]
Merge "Fix flag name for l3 agent external network id"
Takaaki Suzuki [Tue, 25 Sep 2012 06:32:33 +0000 (15:32 +0900)]
Fix flag name for l3 agent external network id
Bug #
1056720
Change-Id: I744da7e1584d5230a23c4fc8b6fc258814babfa9
gongysh [Wed, 26 Sep 2012 08:48:18 +0000 (16:48 +0800)]
clean notification options in quantum.conf.
Bug #
1056637
Change-Id: I9d9002d3dfbbfa94224bc6ed9dc1a7f5207fb563
gongysh [Wed, 26 Sep 2012 04:17:09 +0000 (12:17 +0800)]
Add log setting options into quantum.conf.
Bug #
1056584
This will improve the user experiences.
Change-Id: Iaafd4eeb4fc23c5473276b3cf0e5ccffe2150ec2
Salvatore Orlando [Tue, 25 Sep 2012 17:51:59 +0000 (10:51 -0700)]
Warn about use of overlapping ips in config file
Fix bug
1055822
Add an explicity user in the configuration file regarding consequences of
enabling overlapping IPs when Quantum is used with nova security groups
and/or metadata.
Change-Id: Ifa67216fc7479a7858c0653422bf5baab58fb350
Salvatore Orlando [Mon, 24 Sep 2012 23:20:35 +0000 (16:20 -0700)]
Do global CIDR check if overlapping IPs disabled.
Fix bug
1055822
This patch adds a global configuration option for enabling or disabling
overlapping IPs for subnets in different networks.
If they are disabled, the validation of the CIDR against overlapping
ones should be performed globally and not just among subnets defined for
the current network.
Change-Id: If6a562324f0a5c3982591be8030c4628ec9007b6
Gary Kotton [Mon, 24 Sep 2012 12:31:27 +0000 (12:31 +0000)]
Fix rootwrap filter for dnsmasq when no namespace is used
Fixes bug
1055384
Change-Id: I98381299f28da0e4c443efd4c22ba551022e0288
Gary Kotton [Mon, 24 Sep 2012 05:11:20 +0000 (05:11 +0000)]
Add common popen support to the cisco plugin
Fixes bug
1055290
Change-Id: I5c90b3f23288101c34ac94470476676d5d9c141e
Jenkins [Sun, 23 Sep 2012 22:16:51 +0000 (22:16 +0000)]
Merge "Uses a common subprocess popen function"
Salvatore Orlando [Sat, 22 Sep 2012 00:06:47 +0000 (17:06 -0700)]
Use sqlite db on file for unit tests
bug
1054387
So far unit tests were executed using an in-memory database.
Memory was not being freed thus causing oom frequently due to
the increased number of unit tests.
Since sqlite in memory db do not work very well anyway with nose,
we are moving to file-based databases; slower, but safer.
Also, this patch removes a bunch of unit tests which do not add
anything to code coverage or number or test cases exercised.
Change-Id: Ib853727a5268643fbe8a99f6ebd0fc10aca6a43a
Gary Kotton [Sun, 23 Sep 2012 08:34:33 +0000 (08:34 +0000)]
Uses a common subprocess popen function
Fixes bug
1053381
Change-Id: I8a89ba8d4f03094fcc581981044582c95d1300bb
Jenkins [Sat, 22 Sep 2012 19:07:35 +0000 (19:07 +0000)]
Merge "Remove a function that is not used"