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
8bf5be64
Kaydet (Commit)
8bf5be64
authored
Eki 27, 2016
tarafından
Aanand Prasad
Kaydeden (comit)
GitHub
Eki 27, 2016
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #1274 from docker/npipe-socket-busy-retry
Implement retry logic when the npipe open procedure fails
üst
c7dabbfa
163a1ce3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
npipesocket.py
docker/transport/npipesocket.py
+15
-1
No files found.
docker/transport/npipesocket.py
Dosyayı görüntüle @
8bf5be64
...
...
@@ -5,9 +5,11 @@ import six
import
win32file
import
win32pipe
cERROR_PIPE_BUSY
=
0xe7
cSECURITY_SQOS_PRESENT
=
0x100000
cSECURITY_ANONYMOUS
=
0
cPIPE_READMODE_MESSAGE
=
2
RETRY_WAIT_TIMEOUT
=
10000
def
check_closed
(
f
):
...
...
@@ -46,6 +48,7 @@ class NpipeSocket(object):
@check_closed
def
connect
(
self
,
address
):
win32pipe
.
WaitNamedPipe
(
address
,
self
.
_timeout
)
try
:
handle
=
win32file
.
CreateFile
(
address
,
win32file
.
GENERIC_READ
|
win32file
.
GENERIC_WRITE
,
...
...
@@ -55,6 +58,17 @@ class NpipeSocket(object):
cSECURITY_ANONYMOUS
|
cSECURITY_SQOS_PRESENT
,
0
)
except
win32pipe
.
error
as
e
:
# See Remarks:
# https://msdn.microsoft.com/en-us/library/aa365800.aspx
if
e
.
winerror
==
cERROR_PIPE_BUSY
:
# Another program or thread has grabbed our pipe instance
# before we got to it. Wait for availability and attempt to
# connect again.
win32pipe
.
WaitNamedPipe
(
address
,
RETRY_WAIT_TIMEOUT
)
return
self
.
connect
(
address
)
raise
e
self
.
flags
=
win32pipe
.
GetNamedPipeInfo
(
handle
)[
0
]
self
.
_handle
=
handle
...
...
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