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
e7198ad9
Kaydet (Commit)
e7198ad9
authored
Tem 26, 2016
tarafından
Joffrey F
Kaydeden (comit)
GitHub
Tem 26, 2016
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #1137 from aanand/default-to-npipe-on-windows
Default to npipe address on Windows
üst
106c08fa
0e68b0a4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
utils.py
docker/utils/utils.py
+3
-1
utils_test.py
tests/unit/utils_test.py
+2
-2
No files found.
docker/utils/utils.py
Dosyayı görüntüle @
e7198ad9
...
...
@@ -36,6 +36,8 @@ from .types import Ulimit, LogConfig
DEFAULT_HTTP_HOST
=
"127.0.0.1"
DEFAULT_UNIX_SOCKET
=
"http+unix://var/run/docker.sock"
DEFAULT_NPIPE
=
'npipe:////./pipe/docker_engine'
BYTE_UNITS
=
{
'b'
:
1
,
'k'
:
1024
,
...
...
@@ -390,7 +392,7 @@ def parse_host(addr, is_win32=False, tls=False):
path
=
''
if
not
addr
and
is_win32
:
addr
=
'{0}:{1}'
.
format
(
DEFAULT_HTTP_HOST
,
2375
)
addr
=
DEFAULT_NPIPE
if
not
addr
or
addr
.
strip
()
==
'unix://'
:
return
DEFAULT_UNIX_SOCKET
...
...
tests/unit/utils_test.py
Dosyayı görüntüle @
e7198ad9
...
...
@@ -419,11 +419,11 @@ class ParseHostTest(base.BaseTestCase):
def
test_parse_host_empty_value
(
self
):
unix_socket
=
'http+unix://var/run/docker.sock'
tcp_port
=
'http://127.0.0.1:2375
'
npipe
=
'npipe:////./pipe/docker_engine
'
for
val
in
[
None
,
''
]:
assert
parse_host
(
val
,
is_win32
=
False
)
==
unix_socket
assert
parse_host
(
val
,
is_win32
=
True
)
==
tcp_port
assert
parse_host
(
val
,
is_win32
=
True
)
==
npipe
def
test_parse_host_tls
(
self
):
host_value
=
'myhost.docker.net:3348'
...
...
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