Identify incomplete processing in OQC server helper - #780
Merged
Conversation
Collaborator
Command Bot: Processing... |
|
CUDA Quantum Docs Bot: A preview of the documentation can be found here. |
Collaborator
|
Thanks, @owen-oqc. Do you think this change can explain these two nightly integration test failures?
The error for those runs looked like this: [2023-09-29 03:28:12.135] [info] [OQCServerHelp.cpp:267] Null results received; fetching detailed error message here: https://sandbox.qcaas.oqc.app/tasks/225a5665-264f-4730-8400-e1cb10c3fc07/error
terminate called after throwing an instance of 'std::runtime_error'
what(): OQC backend error message: {"task_error":null}
/__w/_temp/54c4d008-0960-46fa-b317-d7d26c92b688.sh: line 10: 5857 Aborted (core dumped) ./a.out |
bmhowe23
approved these changes
Oct 17, 2023
Contributor
Author
Yes exactly this |
Collaborator
Great! If you merge the latest from main into your branch, we can get this merged after that. |
json null previously matched against c++ NULL 0. This allowed the future to terminate and fetch results before processing had finished.
oarnold-oqc
force-pushed
the
bugfix/incomplete_processing
branch
from
October 17, 2023 18:52
4cdcdc8 to
cb81486
Compare
Collaborator
Command Bot: Processing... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
json null previously matched against c++ NULL 0. This allowed the future to terminate and fetch results before processing had finished.
Description