Skip to content

Commit

Permalink
Fix error message in 'iotedge check' (#7383)
Browse files Browse the repository at this point in the history
A recent update (ca5b8af) to `iotedge check` code fixed the way we calculate the expected current version of aziot-edged. This change makes the corresponding update to an error message in that part of the code.

## Azure IoT Edge PR checklist:
  • Loading branch information
damonbarry authored Oct 23, 2024
1 parent ca5b8af commit 4976970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edgelet/iotedge/src/check/checks/aziot_edged_version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ impl AziotEdgedVersion {
.find(|semver| semver.major == actual_semver.major && semver.minor == actual_semver.minor)
.ok_or_else(|| {
anyhow!(
"could not find aziot-identity-service version {}.{}.x in list of supported products at {}",
"could not find aziot-edge version {}.{}.x in list of supported products at {}",
actual_semver.major,
actual_semver.minor,
Self::URI
Expand Down

0 comments on commit 4976970

Please sign in to comment.