-
Notifications
You must be signed in to change notification settings - Fork 6
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
Unable to subscribe to topics with enum data types #38
Comments
hey @fat-snorlax which cyclonedds versions are you using in your applications? (at some point there was a type-id change) |
I am using version 10.5 |
yes there was a change to the current master. |
I have updated the cyclonedds version to the current master branch for my data publisher and subscriber applications, and cyclone insight. Data is still successfully sent and received from my applications, but insight fails to read data when enum types are used. The error I receive when creating a data reader in insight is: I am building insight from source on Linux. |
I am unable to subscribe to data when the IDL defined topic uses an enum for one of its data members.
example:
enum colors {RED, GREEN, BLUE};
struct ledSignal {
@key int32 idNum;
bool powerOn;
colors lightColor;
}
This results in an XTypes Type ID mismatch between the data publisher and subscriber (insight). I am able to successfully send and receive data in other applications without this mismatch issue.
The text was updated successfully, but these errors were encountered: