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
a102b189
Kaydet (Commit)
a102b189
authored
Şub 19, 2014
tarafından
Maxime Petazzoni
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix events() streaming by using _stream_helper()
Signed-off-by:
Maxime Petazzoni
<
max@signalfuse.com
>
üst
45cde4a0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
14 deletions
+1
-14
client.py
docker/client.py
+1
-14
No files found.
docker/client.py
Dosyayı görüntüle @
a102b189
...
@@ -450,20 +450,7 @@ class Client(requests.Session):
...
@@ -450,20 +450,7 @@ class Client(requests.Session):
format
(
container
))),
True
)
format
(
container
))),
True
)
def
events
(
self
):
def
events
(
self
):
socket
=
self
.
_get_raw_response_socket
(
self
.
get
(
self
.
_url
(
'/events'
),
return
self
.
_stream_helper
(
self
.
get
(
self
.
_url
(
'/events'
),
stream
=
True
))
stream
=
True
))
while
True
:
chunk
=
socket
.
recv
(
4096
)
if
chunk
:
# Messages come in the format of length, data, newline.
# XXX: do they really?
length
,
data
=
chunk
.
split
(
"
\n
"
,
1
)
length
=
int
(
length
,
16
)
if
length
>
len
(
data
):
data
+=
socket
.
recv
(
length
-
len
(
data
))
yield
json
.
loads
(
data
)
else
:
break
def
export
(
self
,
container
):
def
export
(
self
,
container
):
if
isinstance
(
container
,
dict
):
if
isinstance
(
container
,
dict
):
...
...
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