-
Notifications
You must be signed in to change notification settings - Fork 13
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
Feature/move over law #230
Conversation
This reverts commit cbfc02b.
log.debug("Added new ns3 registration for vehicle {}", vehicleRole); | ||
} | ||
if(bridgeRegistrationList.containsKey(vehicleRole)){ | ||
log.debug("Found bridge registration of vehicle {}, making a carma messenger instance now", vehicleRole); |
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.
This log says it's making a new instance now, but doesn't seem to trigger anything?
log.debug("Added new bridge registration for vehicle {}", vehicleRole); | ||
} | ||
if(ns3RegistrationList.containsKey(vehicleRole)){ | ||
log.debug("Found ns3 registration of vehicle {}, making a carma messenger instance now", vehicleRole); |
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.
Same as above, not sure how this functions correctly.
...ion/fed/mosaic-sumo/src/main/java/org/eclipse/mosaic/fed/sumo/ambassador/SumoAmbassador.java
Show resolved
Hide resolved
@@ -40,7 +40,7 @@ | |||
|
|||
|
|||
public class CommonInstanceManager<T extends CommonInstance, R extends CommonRegistrationMessage> { | |||
protected Map<String, T> managedInstances = new HashMap<>(); | |||
public Map<String, T> managedInstances = new HashMap<>(); |
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.
What's the rationale for making this public as opposed to adding a getInstances()
accessor method or something like that?
Quality Gate failedFailed conditions |
PR Details
Description
This is for adding new code in carma messenger ambassador, sumo ambassador and carma messenger vehicle plugin to prepare for the carma messenger integration test
Related GitHub Issue
Related Jira Key
Motivation and Context
How Has This Been Tested?
Types of changes
Checklist: