We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If self.lidar_cluster_entities_data or self.self.radar_cluster_entities_data is None:
self.lidar_cluster_entities_data
self.self.radar_cluster_entities_data
The mapping_data_init node will crash in the publish_new_map function.
The or [] only checks if entities is None but not if self.<>_cluster_entities_data is None.
or []
self.<>_cluster_entities_data
The data init does not crash and uses the entities data optionally.
No response
Difficult, because the crash depends on asynchronous behavior.
But the fix is quite simple.
The text was updated successfully, but these errors were encountered:
Zelberor
Successfully merging a pull request may close this issue.
Current Behavior
If
self.lidar_cluster_entities_data
orself.self.radar_cluster_entities_data
is None:The mapping_data_init node will crash in the publish_new_map function.
The
or []
only checks if entities is None but not ifself.<>_cluster_entities_data
is None.Expected Behavior
The data init does not crash and uses the entities data optionally.
Steps to Reproduce
Definition of Done
No response
Testability
Difficult, because the crash depends on asynchronous behavior.
But the fix is quite simple.
Dependencies
No response
The text was updated successfully, but these errors were encountered: