-
Notifications
You must be signed in to change notification settings - Fork 8
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
Devkelley/find agemo w chariott #53
Devkelley/find agemo w chariott #53
Conversation
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.
One very minor comment.
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.
Approved
@@ -61,8 +64,9 @@ pub enum TopicAction { | |||
#[derive(Debug, Deserialize)] | |||
pub struct ConfigSettings { | |||
pub base_authority: String, | |||
pub managed_subscribe_uri: String, | |||
pub managed_subscribe_uri: Option<String>, |
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.
consider using an enum for these new config entries so that it is truly mutually exclusive
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.
Updated to an enum, please take a look
---- consumer_settings.yaml ---- | ||
|
||
```yaml | ||
invehicle_digital_twin_uri: "http://0.0.0.0:5010" |
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 is out of scope for this PR, but I think it would be very helpful to have sample configs for these so that users don't have to manually create them. might be worth creating an issue to track
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.
We should have a standardized config process for all of our services if possible. I will look into getting an issue created.
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.
Approved.
* Add chariott support for Managed Subscribe * Update README with how to run chariott * fixed spacing errors * fixed grammar * Add enum for service's source * updated readme and fixed whitespace issues * minor change to discover_service_using_chariott * Added comments for structs and enum definitions
Update the Managed Subscribe module so that the Agemo service can be discovered by Chariott if desired. Added documentation explaining what needs to be changed to run the Managed Subscribe sample with Chariott.