Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion qcodes/utils/multiprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def _check_for_errors(self, expect_error=False, query=None):

def _check_response(self, timeout, query=None):
res = self._response_queue.get(timeout=timeout)
if res == SERVER_ERR:
if res is SERVER_ERR:
# TODO: I think the way we're doing this now, I could get rid of
# _error_queue completely and just have errors and regular
# responses labeled differently in _response_queue
Expand Down