Show More
@@ -135,6 +135,7 class commandresponse(object): | |||
|
135 | 135 | self._serviceable = threading.Event() |
|
136 | 136 | |
|
137 | 137 | self._pendingevents = [] |
|
138 | self._pendingerror = None | |
|
138 | 139 | self._decoder = cborutil.bufferingdecoder() |
|
139 | 140 | self._seeninitial = False |
|
140 | 141 | self._redirect = None |
@@ -169,6 +170,12 class commandresponse(object): | |||
|
169 | 170 | |
|
170 | 171 | self._serviceable.set() |
|
171 | 172 | |
|
173 | def _onerror(self, e): | |
|
174 | self._pendingerror = e | |
|
175 | ||
|
176 | with self._lock: | |
|
177 | self._serviceable.set() | |
|
178 | ||
|
172 | 179 | def _handleinitial(self, o): |
|
173 | 180 | self._seeninitial = True |
|
174 | 181 | if o[b'status'] == b'ok': |
@@ -212,6 +219,9 class commandresponse(object): | |||
|
212 | 219 | # our state. |
|
213 | 220 | self._serviceable.wait(1.0) |
|
214 | 221 | |
|
222 | if self._pendingerror: | |
|
223 | raise self._pendingerror | |
|
224 | ||
|
215 | 225 | with self._lock: |
|
216 | 226 | self._serviceable.clear() |
|
217 | 227 | |
@@ -342,10 +352,19 class clienthandler(object): | |||
|
342 | 352 | try: |
|
343 | 353 | self._processresponsedata(frame, meta, response) |
|
344 | 354 | except BaseException as e: |
|
355 | # If an exception occurs before the future is resolved, | |
|
356 | # fail the future. Otherwise, we stuff the exception on | |
|
357 | # the response object so it can be raised during objects() | |
|
358 | # iteration. If nothing is consuming objects(), we could | |
|
359 | # silently swallow this exception. That's a risk we'll have to | |
|
360 | # take. | |
|
361 | if frame.requestid in self._futures: | |
|
345 | 362 | self._futures[frame.requestid].set_exception(e) |
|
346 | 363 | del self._futures[frame.requestid] |
|
347 | 364 | response._oninputcomplete() |
|
348 | 365 | else: |
|
366 | response._onerror(e) | |
|
367 | else: | |
|
349 | 368 | raise error.ProgrammingError( |
|
350 | 369 | 'unhandled action from clientreactor: %s' % action) |
|
351 | 370 |
General Comments 0
You need to be logged in to leave comments.
Login now