Merge lp:~zulcss/cinder/2013.3.rc1 into lp:~ubuntu-server-dev/cinder/havana

Proposed by Chuck Short
Status: Merged
Approved by: Chuck Short
Approved revision: 145
Merged at revision: 144
Proposed branch: lp:~zulcss/cinder/2013.3.rc1
Merge into: lp:~ubuntu-server-dev/cinder/havana
Diff against target: 72 lines (+6/-43)
2 files modified
debian/changelog (+3/-3)
debian/patches/fix-sqlalchemy-requirements.patch (+3/-40)
To merge this branch: bzr merge lp:~zulcss/cinder/2013.3.rc1
Reviewer Review Type Date Requested Status
James Page Approve
Review via email: mp+189299@code.launchpad.net

Description of the change

2013.2~rc1

To post a comment you must log in.
lp:~zulcss/cinder/2013.3.rc1 updated
145. By Chuck Short

Fix changelog

Revision history for this message
James Page (james-page) wrote :

+1'ed in IRC

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'debian/changelog'
--- debian/changelog 2013-10-03 00:22:17 +0000
+++ debian/changelog 2013-10-04 12:51:22 +0000
@@ -1,6 +1,6 @@
1cinder (1:2013.2~b3-0ubuntu2) UNRELEASED; urgency=low1cinder (1:2013.2~rc1-0ubuntu1) saucy; urgency=low
22
3 * New upstream release.3 * New upstream release candidate.
4 * debian/patches/skip-sqlachemy-failures.patch: Dropped4 * debian/patches/skip-sqlachemy-failures.patch: Dropped
5 * debian/patches/fix-sqlalchemy-requirements.patch: Refreshed.5 * debian/patches/fix-sqlalchemy-requirements.patch: Refreshed.
6 * debian/patches/fix-babel-requirements.patch: Revert dependency requirement6 * debian/patches/fix-babel-requirements.patch: Revert dependency requirement
@@ -16,7 +16,7 @@
16 - Bumped versioned dependencies for python-eventlet, python-hp3parclient,16 - Bumped versioned dependencies for python-eventlet, python-hp3parclient,
17 python-keystoneclient, and python-novaclient17 python-keystoneclient, and python-novaclient
1818
19 -- Chuck Short <zulcss@ubuntu.com> Tue, 10 Sep 2013 11:45:33 -040019 -- Chuck Short <zulcss@ubuntu.com> Fri, 04 Oct 2013 08:40:26 -0400
2020
21cinder (1:2013.2~b3-0ubuntu1) saucy; urgency=low21cinder (1:2013.2~b3-0ubuntu1) saucy; urgency=low
2222
2323
=== modified file 'debian/patches/fix-sqlalchemy-requirements.patch'
--- debian/patches/fix-sqlalchemy-requirements.patch 2013-09-24 13:25:43 +0000
+++ debian/patches/fix-sqlalchemy-requirements.patch 2013-10-04 12:51:22 +0000
@@ -1,43 +1,6 @@
1diff --git a/cinder/tests/db/test_finish_migration.py b/cinder/tests/db/test_finish_migration.py1diff -Naurp cinder-2013.2.rc1.orig/requirements.txt cinder-2013.2.rc1/requirements.txt
2index 4fba2a9..0d701aa 1006442--- cinder-2013.2.rc1.orig/requirements.txt 2013-10-04 05:11:50.000000000 -0400
3--- a/cinder/tests/db/test_finish_migration.py3+++ cinder-2013.2.rc1/requirements.txt 2013-10-04 08:33:32.072164528 -0400
4+++ b/cinder/tests/db/test_finish_migration.py
5@@ -41,8 +41,11 @@ class FinishVolumeMigrationTestCase(test.TestCase):
6 dest_volume = testutils.create_volume(ctxt, host='dest',
7 migration_status='target:fake',
8 status='available')
9- db.finish_volume_migration(ctxt, src_volume['id'],
10- dest_volume['id'])
11+ try:
12+ db.finish_volume_migration(ctxt, src_volume['id'],
13+ dest_volume['id'])
14+ except:
15+ self.skipTest('Test fails with sqlalchemy 0.9.8')
16
17 src_volume = db.volume_get(ctxt, src_volume['id'])
18 expected_name = 'volume-%s' % dest_volume['id']
19diff --git a/cinder/tests/test_volume.py b/cinder/tests/test_volume.py
20index 8ce5b73..dc02ee6 100644
21--- a/cinder/tests/test_volume.py
22+++ b/cinder/tests/test_volume.py
23@@ -1728,8 +1728,11 @@ class VolumeTestCase(BaseVolumeTestCase):
24 volume = tests_utils.create_volume(self.context, size=0,
25 host=CONF.host)
26 host_obj = {'host': 'newhost', 'capabilities': {}}
27- self.volume.migrate_volume(self.context, volume['id'],
28- host_obj, True)
29+ try:
30+ self.volume.migrate_volume(self.context, volume['id'],
31+ host_obj, True)
32+ except:
33+ self.skipTest('Tests failing on sqlalchemy 0.9.8')
34 volume = db.volume_get(context.get_admin_context(), volume['id'])
35 self.assertEqual(volume['host'], 'newhost')
36 self.assertEqual(volume['migration_status'], None)
37diff --git a/requirements.txt b/requirements.txt
38index 01ec2e6..97d79d8 100644
39--- a/requirements.txt
40+++ b/requirements.txt
41@@ -20,7 +20,7 @@ python-novaclient>=2.15.04@@ -20,7 +20,7 @@ python-novaclient>=2.15.0
42 python-swiftclient>=1.55 python-swiftclient>=1.5
43 Routes>=1.12.36 Routes>=1.12.3

Subscribers

People subscribed via source and target branches