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
997e583e
Kaydet (Commit)
997e583e
authored
Kas 02, 2016
tarafından
Joffrey F
Kaydeden (comit)
GitHub
Kas 02, 2016
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #1286 from docker/1.10.6-release
1.10.6 release
üst
6f5e19f2
80ad7384
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
5 deletions
+19
-5
npipesocket.py
docker/transport/npipesocket.py
+6
-3
version.py
docker/version.py
+1
-1
change_log.md
docs/change_log.md
+12
-1
No files found.
docker/transport/npipesocket.py
Dosyayı görüntüle @
997e583e
...
...
@@ -169,13 +169,16 @@ class NpipeSocket(object):
def
settimeout
(
self
,
value
):
if
value
is
None
:
self
.
_timeout
=
win32pipe
.
NMPWAIT_NOWAIT
# Blocking mode
self
.
_timeout
=
win32pipe
.
NMPWAIT_WAIT_FOREVER
elif
not
isinstance
(
value
,
(
float
,
int
))
or
value
<
0
:
raise
ValueError
(
'Timeout value out of range'
)
elif
value
==
0
:
self
.
_timeout
=
win32pipe
.
NMPWAIT_USE_DEFAULT_WAIT
# Non-blocking mode
self
.
_timeout
=
win32pipe
.
NMPWAIT_NO_WAIT
else
:
self
.
_timeout
=
value
# Timeout mode - Value converted to milliseconds
self
.
_timeout
=
value
*
1000
def
gettimeout
(
self
):
return
self
.
_timeout
...
...
docker/version.py
Dosyayı görüntüle @
997e583e
version
=
"1.10.
5
"
version
=
"1.10.
6
"
version_info
=
tuple
([
int
(
d
)
for
d
in
version
.
split
(
"-"
)[
0
]
.
split
(
"."
)])
docs/change_log.md
Dosyayı görüntüle @
997e583e
Change Log
==========
1.
10.6
------
[
List of PRs / issues for this release
](
https://github.com/docker/docker-py/milestone/26?closed=1
)
### Bugfixes
*
Fixed an issue where setting a
`NpipeSocket`
instance to blocking mode would
put it in non-blocking mode and vice-versa.
1.10.5
------
[
List of PRs / issues for this release
](
https://github.com/docker/docker-py/milestone/2
4
?closed=1
)
[
List of PRs / issues for this release
](
https://github.com/docker/docker-py/milestone/2
5
?closed=1
)
### Bugfixes
...
...
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