Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
66e3b02d
Commit
66e3b02d
authored
9 years ago
by
Nathaniel Manista
Browse files
Options
Downloads
Plain Diff
Merge pull request #5763 from soltanmm/one-piece
Fix two ways tests can hang. Hooray!
parents
39b082ae
cbd1bce4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/python/grpcio/tests/_runner.py
+12
-1
12 additions, 1 deletion
src/python/grpcio/tests/_runner.py
with
12 additions
and
1 deletion
src/python/grpcio/tests/_runner.py
+
12
−
1
View file @
66e3b02d
...
...
@@ -43,6 +43,13 @@ import uuid
from
tests
import
_loader
from
tests
import
_result
# This number needs to be large enough to outpace output on stdout and stderr
# from the gRPC core, otherwise we could end up in a potential deadlock. This
# stems from the OS waiting on someone to clear a filled pipe buffer while the
# GIL is held from a write to stderr from gRPC core, but said someone is in
# Python code thus necessitating GIL acquisition.
_READ_BYTES
=
2
**
20
class
CapturePipe
(
object
):
"""
A context-manager pipe to redirect output to a byte array.
...
...
@@ -76,6 +83,10 @@ class CapturePipe(object):
flags
=
fcntl
.
fcntl
(
self
.
_read_fd
,
fcntl
.
F_GETFL
)
fcntl
.
fcntl
(
self
.
_read_fd
,
fcntl
.
F_SETFL
,
flags
|
os
.
O_NONBLOCK
)
self
.
_read_thread
=
threading
.
Thread
(
target
=
self
.
_read
)
# If the user wants to exit from the Python program and hits ctrl-C and the
# read thread is somehow deadlocked with something else, the Python code may
# refuse to exit. This prevents that by making the read thread second-class.
self
.
_read_thread
.
daemon
=
True
self
.
_read_thread
.
start
()
def
stop
(
self
):
...
...
@@ -93,7 +104,7 @@ class CapturePipe(object):
self
.
output
=
bytearray
()
while
True
:
select
.
select
([
self
.
_read_fd
],
[],
[])
read_bytes
=
os
.
read
(
self
.
_read_fd
,
1024
)
read_bytes
=
os
.
read
(
self
.
_read_fd
,
_READ_BYTES
)
if
read_bytes
:
self
.
output
.
extend
(
read_bytes
)
else
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment