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
e195e022
Kaydet (Commit)
e195e022
authored
Haz 28, 2018
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix detach assert function to account for new behavior in engine 18.06
Signed-off-by:
Joffrey F
<
joffrey@docker.com
>
üst
dd9cff4f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
helpers.py
tests/helpers.py
+6
-1
No files found.
tests/helpers.py
Dosyayı görüntüle @
e195e022
...
...
@@ -123,7 +123,12 @@ def assert_cat_socket_detached_with_keys(sock, inputs):
sock
.
sendall
(
b
'make sure the socket is closed
\n
'
)
else
:
sock
.
sendall
(
b
"make sure the socket is closed
\n
"
)
assert
sock
.
recv
(
32
)
==
b
''
data
=
sock
.
recv
(
128
)
# New in 18.06: error message is broadcast over the socket when reading
# after detach
assert
data
==
b
''
or
data
.
startswith
(
b
'exec attach failed: error on attach stdin: read escape sequence'
)
def
ctrl_with
(
char
):
...
...
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