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
15b22e7d
Kaydet (Commit)
15b22e7d
authored
Agu 20, 2014
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #292 from mpetazzoni/stop-timeout
Stop timeout should be added to the request timeout
üst
69873263
97366f6b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
7 deletions
+10
-7
client.py
docker/client.py
+1
-1
test.py
tests/test.py
+9
-6
No files found.
docker/client.py
Dosyayı görüntüle @
15b22e7d
...
...
@@ -873,7 +873,7 @@ class Client(requests.Session):
params
=
{
't'
:
timeout
}
url
=
self
.
_url
(
"/containers/{0}/stop"
.
format
(
container
))
res
=
self
.
_post
(
url
,
params
=
params
,
timeout
=
max
(
timeout
,
self
.
_timeout
))
timeout
=
(
timeout
+
self
.
_timeout
))
self
.
_raise_for_status
(
res
)
def
tag
(
self
,
image
,
repository
,
tag
=
None
,
force
=
False
):
...
...
tests/test.py
Dosyayı görüntüle @
15b22e7d
...
...
@@ -934,27 +934,30 @@ class DockerClientTest(Cleanup, unittest.TestCase):
)
def
test_stop_container
(
self
):
timeout
=
2
try
:
self
.
client
.
stop
(
fake_api
.
FAKE_CONTAINER_ID
,
timeout
=
2
)
self
.
client
.
stop
(
fake_api
.
FAKE_CONTAINER_ID
,
timeout
=
timeout
)
except
Exception
as
e
:
self
.
fail
(
'Command should not raise exception: {0}'
.
format
(
e
))
fake_request
.
assert_called_with
(
url_prefix
+
'containers/3cc2351ab11b/stop'
,
params
=
{
't'
:
2
},
timeout
=
docker
.
client
.
DEFAULT_TIMEOUT_SECONDS
params
=
{
't'
:
timeout
},
timeout
=
(
docker
.
client
.
DEFAULT_TIMEOUT_SECONDS
+
timeout
)
)
def
test_stop_container_with_dict_instead_of_id
(
self
):
timeout
=
2
try
:
self
.
client
.
stop
({
'Id'
:
fake_api
.
FAKE_CONTAINER_ID
},
timeout
=
2
)
self
.
client
.
stop
({
'Id'
:
fake_api
.
FAKE_CONTAINER_ID
},
timeout
=
timeout
)
except
Exception
as
e
:
self
.
fail
(
'Command should not raise exception: {0}'
.
format
(
e
))
fake_request
.
assert_called_with
(
url_prefix
+
'containers/3cc2351ab11b/stop'
,
params
=
{
't'
:
2
},
timeout
=
docker
.
client
.
DEFAULT_TIMEOUT_SECONDS
params
=
{
't'
:
timeout
},
timeout
=
(
docker
.
client
.
DEFAULT_TIMEOUT_SECONDS
+
timeout
)
)
def
test_kill_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