Bug 962582
Summary: | Ensure compatibility with requests >= 1.0 | ||
---|---|---|---|
Product: | [Retired] Beaker | Reporter: | Nick Coghlan <ncoghlan> |
Component: | tests | Assignee: | Nick Coghlan <ncoghlan> |
Status: | CLOSED CURRENTRELEASE | QA Contact: | |
Severity: | unspecified | Docs Contact: | |
Priority: | medium | ||
Version: | 0.12 | CC: | asaha, dcallagh, llim, qwan, rglasz, rmancy |
Target Milestone: | 0.13 | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2013-06-25 06:26:24 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Nick Coghlan
2013-05-14 00:53:54 UTC
Regarding the 'prefetch' error, in a couple of tests, we have statements like these: request = requests.get(url, cookies=cookies, prefetch=False) which is hitting the API change. This can be fixed by replacing it with: request = requests.get(url, cookies=cookies, stream=True) (I can't seem to be able to find the changelog which explained the change) (In reply to comment #0) > This will also involve packaging the now separate > https://pypi.python.org/pypi/requests-kerberos/ as an RPM Package review for python-requests-kerberos is bug 962612. (In reply to Dan Callaghan from comment #6) Sorry, ignore this. requests was not upgraded. It's working now. It is probably a mistake in the packaging of requests-kerberos that it doesn't require newer requests. I will fix that. Beaker 0.13.1 has been released. |