-
Notifications
You must be signed in to change notification settings - Fork 319
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add debugging and make the final write more robust #822
Conversation
@@ -11,6 +11,8 @@ | |||
from .location import FormatLocation | |||
from qcodes.utils.helpers import DelegateAttributes, full_class, deep_update | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a bunch of old style non named loggers in this file. I think we should convert those too
Looks good 👍 for a test based on #821 Does finalise get called if you keyboard interrupt ? |
qcodes/tests/test_loop.py
Outdated
super().__init__(name=name, names=names, shapes=shapes, | ||
instrument=instrument) | ||
|
||
def get(self): # this results in a nan-filled DataArray |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
might as well make this get_raw to not get the warning?
The abstract write method in |
Author: William H.P. Nielsen <[email protected]> add debugging and make the final write more robust (#822)
Fixes #821
Changes proposed in this pull request:
log.debug
to the data saving processqc.Loop
's final writing of data more robust@jenshnielsen @sohailc