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
81edb398
Kaydet (Commit)
81edb398
authored
Mar 18, 2016
tarafından
Aanand Prasad
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #999 from docker/tcp-to-https-parsehost
If TCP host is provided while TLS is enabled, convert to https
üst
41acd70f
3168149c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
utils.py
docker/utils/utils.py
+3
-2
utils_test.py
tests/unit/utils_test.py
+6
-1
No files found.
docker/utils/utils.py
Dosyayı görüntüle @
81edb398
...
...
@@ -400,11 +400,12 @@ def parse_host(addr, platform=None, tls=False):
if
addr
==
'tcp://'
:
raise
errors
.
DockerException
(
"Invalid bind address format: {0}"
.
format
(
addr
))
"Invalid bind address format: {0}"
.
format
(
addr
)
)
elif
addr
.
startswith
(
'unix://'
):
addr
=
addr
[
7
:]
elif
addr
.
startswith
(
'tcp://'
):
proto
=
"http"
proto
=
'http{0}'
.
format
(
's'
if
tls
else
''
)
addr
=
addr
[
6
:]
elif
addr
.
startswith
(
'https://'
):
proto
=
"https"
...
...
tests/unit/utils_test.py
Dosyayı görüntüle @
81edb398
...
...
@@ -412,7 +412,12 @@ class ParseHostTest(base.BaseTestCase):
def
test_parse_host_tls
(
self
):
host_value
=
'myhost.docker.net:3348'
expected_result
=
'https://myhost.docker.net:3348'
self
.
assertEqual
(
parse_host
(
host_value
,
None
,
True
),
expected_result
)
assert
parse_host
(
host_value
,
tls
=
True
)
==
expected_result
def
test_parse_host_tls_tcp_proto
(
self
):
host_value
=
'tcp://myhost.docker.net:3348'
expected_result
=
'https://myhost.docker.net:3348'
assert
parse_host
(
host_value
,
tls
=
True
)
==
expected_result
class
ParseRepositoryTagTest
(
base
.
BaseTestCase
):
...
...
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