Skip to content

Commit

Permalink
update break
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-du-car committed Nov 10, 2023
1 parent dedf357 commit 9f565ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ namespace RSUHealthMonitor
try
{
// Periodic SNMP call to get RSU status based on RSU MIB version 4.1
auto rsuStatusJson = getRSUstatus();
auto rsuStatusJson = getRSUStatus();
// Broadcast the RSU status info when there are RSU responses.
if (!rsuStatusJson.empty())
{
Expand Down Expand Up @@ -83,7 +83,7 @@ namespace RSUHealthMonitor
}
}

Json::Value RSUHealthMonitorPlugin::getRSUstatus()
Json::Value RSUHealthMonitorPlugin::getRSUStatus()
{
if (!_rsuWorker)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace RSUHealthMonitor
* @brief Sending SNMP requests to get info for each field in the RSUStatusConfigTable, and return the RSU status in JSON
* Use RSU Status configuration table include RSU field, OIDs, and whether fields are required or optional
*/
Json::Value getRSUstatus();
Json::Value getRSUStatus();

public:
RSUHealthMonitorPlugin(std::string name);
Expand Down

0 comments on commit 9f565ec

Please sign in to comment.