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
a6c1d7b7
Kaydet (Commit)
a6c1d7b7
authored
Mar 30, 2016
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
flake8 fixes
Signed-off-by:
Joffrey F
<
joffrey@docker.com
>
üst
c5a92e08
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
unixconn.py
docker/unixconn/unixconn.py
+4
-2
No files found.
docker/unixconn/unixconn.py
Dosyayı görüntüle @
a6c1d7b7
...
...
@@ -31,7 +31,8 @@ RecentlyUsedContainer = urllib3._collections.RecentlyUsedContainer
class
UnixHTTPConnection
(
httplib
.
HTTPConnection
,
object
):
def
__init__
(
self
,
base_url
,
unix_socket
,
timeout
=
60
):
super
(
UnixHTTPConnection
,
self
)
.
__init__
(
'localhost'
,
timeout
=
timeout
)
'localhost'
,
timeout
=
timeout
)
self
.
base_url
=
base_url
self
.
unix_socket
=
unix_socket
self
.
timeout
=
timeout
...
...
@@ -46,7 +47,8 @@ class UnixHTTPConnection(httplib.HTTPConnection, object):
class
UnixHTTPConnectionPool
(
urllib3
.
connectionpool
.
HTTPConnectionPool
):
def
__init__
(
self
,
base_url
,
socket_path
,
timeout
=
60
):
super
(
UnixHTTPConnectionPool
,
self
)
.
__init__
(
'localhost'
,
timeout
=
timeout
)
'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