We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07d81cf commit 1a6aa7bCopy full SHA for 1a6aa7b
dpgen/dispatcher/LazyLocalContext.py
@@ -121,13 +121,16 @@ def check_finish(self, proc):
121
def get_return(self, proc):
122
ret = proc.poll()
123
if ret is None:
124
+ print('---------------- proc is None ----------------')
125
return None, None, None
126
else :
127
try:
128
o, e = proc.communicate()
129
+ print('---------------- communicate finishes ----------------')
130
stdout = SPRetObj(o)
131
stderr = SPRetObj(e)
132
except ValueError:
133
+ print('---------------- communicate failed ----------------')
134
stdout = None
135
stderr = None
136
return ret, stdout, stderr
0 commit comments