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
d4007956
Unverified
Kaydet (Commit)
d4007956
authored
Kas 09, 2017
tarafından
Joffrey F
Kaydeden (comit)
GitHub
Kas 09, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #1802 from docker/2.6.1-release
2.6.1 release
üst
65ba043d
2008f526
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
8 deletions
+18
-8
unixconn.py
docker/transport/unixconn.py
+5
-6
version.py
docker/version.py
+1
-1
change-log.md
docs/change-log.md
+12
-1
No files found.
docker/transport/unixconn.py
Dosyayı görüntüle @
d4007956
...
...
@@ -21,13 +21,12 @@ RecentlyUsedContainer = urllib3._collections.RecentlyUsedContainer
class
UnixHTTPResponse
(
httplib
.
HTTPResponse
,
object
):
def
__init__
(
self
,
sock
,
*
args
,
**
kwargs
):
disable_buffering
=
kwargs
.
pop
(
'disable_buffering'
,
False
)
if
six
.
PY2
:
# FIXME: We may need to disable buffering on Py3 as well,
# but there's no clear way to do it at the moment. See:
# https://github.com/docker/docker-py/issues/1799
kwargs
[
'buffering'
]
=
not
disable_buffering
super
(
UnixHTTPResponse
,
self
)
.
__init__
(
sock
,
*
args
,
**
kwargs
)
if
disable_buffering
is
True
:
# We must first create a new pointer then close the old one
# to avoid closing the underlying socket.
new_fp
=
sock
.
makefile
(
'rb'
,
0
)
self
.
fp
.
close
()
self
.
fp
=
new_fp
class
UnixHTTPConnection
(
httplib
.
HTTPConnection
,
object
):
...
...
docker/version.py
Dosyayı görüntüle @
d4007956
version
=
"2.6.
0
"
version
=
"2.6.
1
"
version_info
=
tuple
([
int
(
d
)
for
d
in
version
.
split
(
"-"
)[
0
]
.
split
(
"."
)])
docs/change-log.md
Dosyayı görüntüle @
d4007956
Change log
==========
2.
6.1
-----
[
List of PRs / issues for this release
](
https://github.com/docker/docker-py/milestone/40?closed=1
)
### Bugfixes
*
Fixed a bug on Python 3 installations preventing the use of the
`attach`
and
`exec_run`
methods.
2.6.0
-----
[
List of PRs / issues for this release
](
https://github.com/docker/docker-py/milestone/3
4
?closed=1
)
[
List of PRs / issues for this release
](
https://github.com/docker/docker-py/milestone/3
8
?closed=1
)
### Features
...
...
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