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
2454e810
Kaydet (Commit)
2454e810
authored
Nis 25, 2018
tarafından
Joffrey F
Kaydeden (comit)
Joffrey F
Nis 26, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Total timeout should be HTTP timeout + operation timeout
Signed-off-by:
Joffrey F
<
joffrey@docker.com
>
üst
1848d2c9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
11 deletions
+11
-11
container.py
docker/api/container.py
+6
-6
api_container_test.py
tests/integration/api_container_test.py
+1
-1
api_container_test.py
tests/unit/api_container_test.py
+4
-4
No files found.
docker/api/container.py
Dosyayı görüntüle @
2454e810
...
...
@@ -1018,10 +1018,9 @@ class ContainerApiMixin(object):
"""
params
=
{
't'
:
timeout
}
url
=
self
.
_url
(
"/containers/{0}/restart"
,
container
)
conn_timeout
=
self
.
timeout
if
conn_timeout
:
conn_timeout
=
max
(
conn_timeout
,
timeout
+
15
)
res
=
self
.
_post
(
url
,
params
=
params
,
timeout
=
conn_timeout
)
res
=
self
.
_post
(
url
,
params
=
params
,
timeout
=
timeout
+
(
self
.
timeout
or
0
)
)
self
.
_raise_for_status
(
res
)
@utils.check_resource
(
'container'
)
...
...
@@ -1113,8 +1112,9 @@ class ContainerApiMixin(object):
conn_timeout
=
self
.
timeout
if
conn_timeout
:
conn_timeout
=
max
(
conn_timeout
,
timeout
+
15
)
res
=
self
.
_post
(
url
,
params
=
params
,
timeout
=
conn_timeout
)
res
=
self
.
_post
(
url
,
params
=
params
,
timeout
=
timeout
+
(
self
.
timeout
or
0
)
)
self
.
_raise_for_status
(
res
)
@utils.check_resource
(
'container'
)
...
...
tests/integration/api_container_test.py
Dosyayı görüntüle @
2454e810
...
...
@@ -1165,7 +1165,7 @@ class RestartContainerTest(BaseAPIIntegrationTest):
assert
info2
[
'State'
][
'Running'
]
is
True
self
.
client
.
kill
(
id
)
def
test_restart_with_high
t
_timeout
(
self
):
def
test_restart_with_high_timeout
(
self
):
container
=
self
.
client
.
create_container
(
BUSYBOX
,
[
'sleep'
,
'9999'
])
id
=
container
[
'Id'
]
self
.
client
.
start
(
id
)
...
...
tests/unit/api_container_test.py
Dosyayı görüntüle @
2454e810
...
...
@@ -1264,7 +1264,7 @@ class ContainerTest(BaseAPIClientTest):
'POST'
,
url_prefix
+
'containers/3cc2351ab11b/stop'
,
params
=
{
't'
:
timeout
},
timeout
=
(
DEFAULT_TIMEOUT_SECONDS
)
timeout
=
(
DEFAULT_TIMEOUT_SECONDS
+
timeout
)
)
def
test_stop_container_with_dict_instead_of_id
(
self
):
...
...
@@ -1277,7 +1277,7 @@ class ContainerTest(BaseAPIClientTest):
'POST'
,
url_prefix
+
'containers/3cc2351ab11b/stop'
,
params
=
{
't'
:
timeout
},
timeout
=
(
DEFAULT_TIMEOUT_SECONDS
)
timeout
=
(
DEFAULT_TIMEOUT_SECONDS
+
timeout
)
)
def
test_pause_container
(
self
):
...
...
@@ -1335,7 +1335,7 @@ class ContainerTest(BaseAPIClientTest):
'POST'
,
url_prefix
+
'containers/3cc2351ab11b/restart'
,
params
=
{
't'
:
2
},
timeout
=
DEFAULT_TIMEOUT_SECONDS
timeout
=
(
DEFAULT_TIMEOUT_SECONDS
+
2
)
)
def
test_restart_container_with_dict_instead_of_id
(
self
):
...
...
@@ -1345,7 +1345,7 @@ class ContainerTest(BaseAPIClientTest):
'POST'
,
url_prefix
+
'containers/3cc2351ab11b/restart'
,
params
=
{
't'
:
2
},
timeout
=
DEFAULT_TIMEOUT_SECONDS
timeout
=
(
DEFAULT_TIMEOUT_SECONDS
+
2
)
)
def
test_remove_container
(
self
):
...
...
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