-
Notifications
You must be signed in to change notification settings - Fork 49
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
Fix schema for min_loglevel, etc #300
Conversation
…y at point level. Add it back to correct places. Remove
@@ -571,9 +571,6 @@ PointPointsetConfig configFromMetadata(PointPointsetMetadata metadata) { | |||
if (Boolean.TRUE.equals(metadata.writable)) { | |||
pointConfig.set_value = metadata.baseline_value; | |||
} | |||
pointConfig.min_loglevel = metadata.min_loglevel; |
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.
Shouldn't there be new stuff that copies the values into the pointset config? Somewhere in getDevicePointsetConfig()?
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.
My understanding is that this is an unused artifact of my earlier attempt to provide defaults by setting them directly.
With the schema changes
PointsetMetadata (not PointsetPointMetadata) holds sample_{limit,rate}_sec
SystemConfig and SystemMetadata holds min_loglevel
No description provided.