Skip to content

Commit

Permalink
mgmt, network, bug fix, throw if not 404 (#43136)
Browse files Browse the repository at this point in the history
  • Loading branch information
weidongxu-microsoft authored Nov 29, 2024
1 parent 2db513c commit 8b0eef6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,8 @@ public Collection<NicIpConfiguration> listNetworkInterfaceIPConfigurations() {
if (e.getResponse().getStatusCode() == 404) {
// NIC not found, ignore this ipConfigRef
LOGGER.warning("Network interface not found '{}'", nicID);
} else {
throw LOGGER.logExceptionAsError(e);
}
}
}
Expand Down

0 comments on commit 8b0eef6

Please sign in to comment.