Merge lp:~ubuntu-branches/ubuntu/oneiric/lazr.restfulclient/oneiric-201106162303 into lp:ubuntu/oneiric/lazr.restfulclient

Proposed by James Westby
Status: Rejected
Rejected by: James Westby
Proposed branch: lp:~ubuntu-branches/ubuntu/oneiric/lazr.restfulclient/oneiric-201106162303
Merge into: lp:ubuntu/oneiric/lazr.restfulclient
Diff against target: 28 lines (+22/-0) (has conflicts)
1 file modified
debian/patches/disable_cert_validation.patch (+22/-0)
Conflict adding file debian/patches/disable_cert_validation.patch.  Moved existing file to debian/patches/disable_cert_validation.patch.moved.
To merge this branch: bzr merge lp:~ubuntu-branches/ubuntu/oneiric/lazr.restfulclient/oneiric-201106162303
Reviewer Review Type Date Requested Status
Ubuntu branches Pending
Review via email: mp+64919@code.launchpad.net

Description of the change

The package history in the archive and the history in the bzr branch differ. As the archive is authoritative the history of lp:ubuntu/oneiric/lazr.restfulclient now reflects that and the old bzr branch has been pushed to lp:~ubuntu-branches/ubuntu/oneiric/lazr.restfulclient/oneiric-201106162303. A merge should be performed if necessary.

To post a comment you must log in.

Unmerged revisions

15. By Barry Warsaw

httplib2 0.7.0 added SSL certificate validation by default, but
lazr.restfulclient is not prepared to handle this, so disable it for
now. (LP: #797281)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added file 'debian/patches/disable_cert_validation.patch'
2--- debian/patches/disable_cert_validation.patch 1970-01-01 00:00:00 +0000
3+++ debian/patches/disable_cert_validation.patch 2011-06-16 23:08:27 +0000
4@@ -0,0 +1,22 @@
5+Description: httplib2 0.7.0 added SSL certificate validation by default, but
6+ lazr.restfulclient is not prepared to handle this, so disable it for now.
7+Author: Barry Warsaw <barry@ubuntu.com>
8+Bug-Ubuntu: https://bugs.launchpad.net/lazr.restfulclient/+bug/797281
9+Forwarded: yes
10+
11+=== modified file 'src/lazr/restfulclient/_browser.py'
12+--- old/src/lazr/restfulclient/_browser.py 2010-12-04 12:53:58 +0000
13++++ new/src/lazr/restfulclient/_browser.py 2011-06-16 15:53:43 +0000
14+@@ -106,7 +106,10 @@
15+
16+ def __init__(self, authorizer=None, cache=None, timeout=None,
17+ proxy_info=None):
18+- super(RestfulHttp, self).__init__(cache, timeout, proxy_info)
19++ super(RestfulHttp, self).__init__(
20++ cache, timeout, proxy_info,
21++ # LP: #797281
22++ disable_ssl_certificate_validation=True)
23+ self.authorizer = authorizer
24+ if self.authorizer is not None:
25+ self.authorizer.authorizeSession(self)
26+
27
28=== renamed file 'debian/patches/disable_cert_validation.patch' => 'debian/patches/disable_cert_validation.patch.moved'

Subscribers

People subscribed via source and target branches

to all changes: