-
Notifications
You must be signed in to change notification settings - Fork 43
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
Metric Class Integer Property is uint? #56
Comments
Good question, I need to check that again. From the first view, uint doesn't make sense... |
The problem is the Proto file: oneof value {
uint32 int_value = 3;
uint64 long_value = 4;
float float_value = 5;
double double_value = 6;
bool boolean_value = 7;
string string_value = 8;
PropertySet propertyset_value = 9;
PropertySetList propertysets_value = 10; // List of Property Values
PropertyValueExtension extension_value = 11;
} --> Which value should be set if there is an I need to ask the Sparkplug guys for advice here, I guess... |
Waiting on eclipse-sparkplug/sparkplug#495 and / or eclipse-sparkplug/sparkplug#499. |
Should be fixed after 4fdb449 (Version 1.3.0+). |
Is there a reason why the integer property is an unsigned integer? I've encountered several exceptions when creating a new instance of a Metric, or using the SetValue method, when the value is a negative integer.
The text was updated successfully, but these errors were encountered: