Merge lp:~yolanda.robla/glance/grizzly into lp:~openstack-ubuntu-testing/glance/grizzly

Proposed by Yolanda Robla
Status: Merged
Approved by: Chuck Short
Approved revision: 229
Merged at revision: 229
Proposed branch: lp:~yolanda.robla/glance/grizzly
Merge into: lp:~openstack-ubuntu-testing/glance/grizzly
Diff against target: 69 lines (+4/-35)
3 files modified
debian/changelog (+4/-2)
debian/patches/series (+0/-1)
debian/patches/webob_1.1_compat.patch (+0/-32)
To merge this branch: bzr merge lp:~yolanda.robla/glance/grizzly
Reviewer Review Type Date Requested Status
Openstack Ubuntu Testers Pending
Review via email: mp+141773@code.launchpad.net

Description of the change

Updated changelog, removed unused patches

To post a comment you must log in.

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 2012-12-17 10:14:40 +0000
3+++ debian/changelog 2013-01-03 15:58:59 +0000
4@@ -1,9 +1,8 @@
5-glance (2013.1~g2~20121215.46.gbeb1536-0ubuntu1) UNRELEASED; urgency=low
6+glance (2013.1~g2~20130103.63.g48cf125-0ubuntu1) UNRELEASED; urgency=low
7
8 [ James Page ]
9 * New upstream release.
10 * Re-enable gating of package build based on unit test success:
11- - d/p/webob_1.1_compat.patch: Patch for compatibility with webob 1.1.
12 - d/rules: Enable build failure on unit testing failure, scope
13 test execution to glance/tests.
14 * Switched upstart configurations to use start-stop-daemon instead of su.
15@@ -16,6 +15,9 @@
16 * debian/*.manpages: Install Sphinx-generated manpages for binaries
17 installed by glance-common, glance-registry, and glance-api.
18
19+ [ Yolanda Robla Mota ]
20+ * Updated package version
21+
22 -- Adam Gandelman <adamg@ubuntu.com> Wed, 05 Dec 2012 11:12:37 -0800
23
24 glance (2013.1~g1-0ubuntu1) raring; urgency=low
25
26=== modified file 'debian/patches/series'
27--- debian/patches/series 2012-11-26 13:36:21 +0000
28+++ debian/patches/series 2013-01-03 15:58:59 +0000
29@@ -1,3 +1,2 @@
30 sql_conn.patch
31 disable-network-for-docs.patch
32-webob_1.1_compat.patch
33
34=== removed file 'debian/patches/webob_1.1_compat.patch'
35--- debian/patches/webob_1.1_compat.patch 2012-12-17 08:33:27 +0000
36+++ debian/patches/webob_1.1_compat.patch 1970-01-01 00:00:00 +0000
37@@ -1,32 +0,0 @@
38-Description: webob 1.1 compatibility fixes.
39- Some behaviour changes between 1.0.8 and 1.1 cause test
40- failures; specifically:
41- .
42- - when app_iter is used for chunked transfers the
43- Content-MD5 header is dropped automatically; this
44- might be a bug in webob but setting the MD5 after
45- providing the iterator fixes the issue for the time
46- being.
47- .
48- Upstream openstack still baseline on 1.0.8 so Ubuntu will
49- need to hold this patch until they upgrade.
50-Author: James Page <james.page@ubuntu.com>
51-Forwarded: no
52-Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/python-webob/+bug/1083155
53-
54---- a/glance/api/v2/image_data.py
55-+++ b/glance/api/v2/image_data.py
56-@@ -137,10 +137,11 @@ class ResponseSerializer(wsgi.JSONRespon
57- checksum = result['meta']['checksum']
58- response.headers['Content-Length'] = size
59- response.headers['Content-Type'] = 'application/octet-stream'
60-- if checksum:
61-- response.headers['Content-MD5'] = checksum
62- response.app_iter = common.size_checked_iter(
63- response, result['meta'], size, result['data'], self.notifier)
64-+ if checksum:
65-+ response.headers['Content-MD5'] = checksum
66-+
67-
68- def upload(self, response, result):
69- response.status_int = 201

Subscribers

People subscribed via source and target branches