Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
docker-py
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
docker-py
Commits
456cfdb3
Kaydet (Commit)
456cfdb3
authored
Mar 23, 2016
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #972 from vitalyisaev2/master
UnixHTTPConnectionPool initialization error
üst
54ad7276
8dd9d1d6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
unixconn.py
docker/unixconn/unixconn.py
+4
-4
No files found.
docker/unixconn/unixconn.py
Dosyayı görüntüle @
456cfdb3
...
...
@@ -30,7 +30,8 @@ RecentlyUsedContainer = urllib3._collections.RecentlyUsedContainer
class
UnixHTTPConnection
(
httplib
.
HTTPConnection
,
object
):
def
__init__
(
self
,
base_url
,
unix_socket
,
timeout
=
60
):
httplib
.
HTTPConnection
.
__init__
(
self
,
'localhost'
,
timeout
=
timeout
)
super
(
UnixHTTPConnection
,
self
)
.
__init__
(
'localhost'
,
timeout
=
timeout
)
self
.
base_url
=
base_url
self
.
unix_socket
=
unix_socket
self
.
timeout
=
timeout
...
...
@@ -44,9 +45,8 @@ class UnixHTTPConnection(httplib.HTTPConnection, object):
class
UnixHTTPConnectionPool
(
urllib3
.
connectionpool
.
HTTPConnectionPool
):
def
__init__
(
self
,
base_url
,
socket_path
,
timeout
=
60
):
urllib3
.
connectionpool
.
HTTPConnectionPool
.
__init__
(
self
,
'localhost'
,
timeout
=
timeout
)
super
(
UnixHTTPConnectionPool
,
self
)
.
__init__
(
'localhost'
,
timeout
=
timeout
)
self
.
base_url
=
base_url
self
.
socket_path
=
socket_path
self
.
timeout
=
timeout
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment