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
1=== modified file 'debian/changelog'
2--- debian/changelog 2013-10-03 00:22:17 +0000
3+++ debian/changelog 2013-10-04 12:51:22 +0000
4@@ -1,6 +1,6 @@
5-cinder (1:2013.2~b3-0ubuntu2) UNRELEASED; urgency=low
6+cinder (1:2013.2~rc1-0ubuntu1) saucy; urgency=low
7
8- * New upstream release.
9+ * New upstream release candidate.
10 * debian/patches/skip-sqlachemy-failures.patch: Dropped
11 * debian/patches/fix-sqlalchemy-requirements.patch: Refreshed.
12 * debian/patches/fix-babel-requirements.patch: Revert dependency requirement
13@@ -16,7 +16,7 @@
14 - Bumped versioned dependencies for python-eventlet, python-hp3parclient,
15 python-keystoneclient, and python-novaclient
16
17- -- Chuck Short <zulcss@ubuntu.com> Tue, 10 Sep 2013 11:45:33 -0400
18+ -- Chuck Short <zulcss@ubuntu.com> Fri, 04 Oct 2013 08:40:26 -0400
19
20 cinder (1:2013.2~b3-0ubuntu1) saucy; urgency=low
21
22
23=== modified file 'debian/patches/fix-sqlalchemy-requirements.patch'
24--- debian/patches/fix-sqlalchemy-requirements.patch 2013-09-24 13:25:43 +0000
25+++ debian/patches/fix-sqlalchemy-requirements.patch 2013-10-04 12:51:22 +0000
26@@ -1,43 +1,6 @@
27-diff --git a/cinder/tests/db/test_finish_migration.py b/cinder/tests/db/test_finish_migration.py
28-index 4fba2a9..0d701aa 100644
29---- a/cinder/tests/db/test_finish_migration.py
30-+++ b/cinder/tests/db/test_finish_migration.py
31-@@ -41,8 +41,11 @@ class FinishVolumeMigrationTestCase(test.TestCase):
32- dest_volume = testutils.create_volume(ctxt, host='dest',
33- migration_status='target:fake',
34- status='available')
35-- db.finish_volume_migration(ctxt, src_volume['id'],
36-- dest_volume['id'])
37-+ try:
38-+ db.finish_volume_migration(ctxt, src_volume['id'],
39-+ dest_volume['id'])
40-+ except:
41-+ self.skipTest('Test fails with sqlalchemy 0.9.8')
42-
43- src_volume = db.volume_get(ctxt, src_volume['id'])
44- expected_name = 'volume-%s' % dest_volume['id']
45-diff --git a/cinder/tests/test_volume.py b/cinder/tests/test_volume.py
46-index 8ce5b73..dc02ee6 100644
47---- a/cinder/tests/test_volume.py
48-+++ b/cinder/tests/test_volume.py
49-@@ -1728,8 +1728,11 @@ class VolumeTestCase(BaseVolumeTestCase):
50- volume = tests_utils.create_volume(self.context, size=0,
51- host=CONF.host)
52- host_obj = {'host': 'newhost', 'capabilities': {}}
53-- self.volume.migrate_volume(self.context, volume['id'],
54-- host_obj, True)
55-+ try:
56-+ self.volume.migrate_volume(self.context, volume['id'],
57-+ host_obj, True)
58-+ except:
59-+ self.skipTest('Tests failing on sqlalchemy 0.9.8')
60- volume = db.volume_get(context.get_admin_context(), volume['id'])
61- self.assertEqual(volume['host'], 'newhost')
62- self.assertEqual(volume['migration_status'], None)
63-diff --git a/requirements.txt b/requirements.txt
64-index 01ec2e6..97d79d8 100644
65---- a/requirements.txt
66-+++ b/requirements.txt
67+diff -Naurp cinder-2013.2.rc1.orig/requirements.txt cinder-2013.2.rc1/requirements.txt
68+--- cinder-2013.2.rc1.orig/requirements.txt 2013-10-04 05:11:50.000000000 -0400
69++++ cinder-2013.2.rc1/requirements.txt 2013-10-04 08:33:32.072164528 -0400
70 @@ -20,7 +20,7 @@ python-novaclient>=2.15.0
71 python-swiftclient>=1.5
72 Routes>=1.12.3

Subscribers

People subscribed via source and target branches