Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 897333 Details for
Bug 1099243
Failure to sync against cdn.redhat.com, requires SSLv3 ([Errno 8] _ssl.c:504: EOF occurred in violation of protocol)
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Workaround to force sslv3 for https://cdn.redhat.com
nectar_force_ssl3_for_cdn.patch (text/plain), 963 bytes, created by
John Matthews
on 2014-05-19 21:56:17 UTC
(
hide
)
Description:
Workaround to force sslv3 for https://cdn.redhat.com
Filename:
MIME Type:
Creator:
John Matthews
Created:
2014-05-19 21:56:17 UTC
Size:
963 bytes
patch
obsolete
>--- threaded.py.ORIGINAL 2014-05-19 16:49:52.936610556 -0400 >+++ threaded.py 2014-05-19 17:10:58.789322571 -0400 >@@ -286,8 +286,19 @@ > > # -- requests utilities -------------------------------------------------------- > >+def build_ssl3_adapter(): >+ import ssl >+ from requests.adapters import HTTPAdapter >+ from requests.packages.urllib3.poolmanager import PoolManager >+ class Ssl3HttpAdapter(HTTPAdapter): >+ def init_poolmanager(self, connections, maxsize, block=False): >+ self.poolmanager = PoolManager(num_pools=connections, maxsize=maxsize, >+ block=block, ssl_version=ssl.PROTOCOL_SSLv3) >+ return Ssl3HttpAdapter() >+ > def build_session(config): > session = requests.Session() >+ session.mount("https://cdn.redhat.com", build_ssl3_adapter()) > session.stream = True # required for reading the download in chunks > _add_basic_auth(session, config) > _add_ssl(session, config)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1099243
: 897333