-
Notifications
You must be signed in to change notification settings - Fork 71
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
Add support for ListProviders operation update #19
Conversation
src/providers/core_provider/mod.rs
Outdated
@@ -42,8 +43,14 @@ impl Provide for CoreProvider { | |||
|
|||
fn describe(&self) -> ProviderInfo { | |||
ProviderInfo { | |||
id: ProviderID::CoreProvider, | |||
// Randomly generated UUID: 47049873-2a43-4845-9d72-831eab668784 |
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.
Can we replace the comment "Randomly generated UUID" with "Assigned UUID for this provider"? I want to convey the impression that these things are assigned once only at creation time, and then hold true forever. The comment as worded seems to give the impression that this could fluctuate.
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.
Will change.
src/providers/mbed_provider/mod.rs
Outdated
@@ -234,8 +235,14 @@ impl Provide for MbedProvider { | |||
|
|||
fn describe(&self) -> ProviderInfo { | |||
ProviderInfo { | |||
id: ProviderID::MbedProvider, | |||
// Randomly generated UUID: 1c1139dc-ad7c-47dc-ad6b-db6fdb466552 |
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.
Also here, let's say "Assigned UUID for this provider" or something.
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.
Will change.
Assigns to each provider a random UUID. Change-Id: Iec4e387eeef831c2082cc6ef2988937d538f7221 Signed-off-by: Hugues de Valon <hugues.devalon@arm.com>
This commit adds functionality for the service to process requests that do not have an authentication field assigned. Changes provided by: * Ionut Mihalcea (ionut.mihalcea@arm.com) * Hugues de Valon (hugues.devalon@arm.com) Change-Id: I2fa57f1a466c811f3434b99753a1dcfa335f463c Signed-off-by: Ionut Mihalcea <ionut.mihalcea@arm.com>
Merging as Paul's comments have been addressed. |
Assigns to each provider a random UUID.
Change-Id: Iec4e387eeef831c2082cc6ef2988937d538f7221
Signed-off-by: Hugues de Valon hugues.devalon@arm.com