Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-du-car committed Nov 10, 2023
1 parent 1569792 commit aabd56a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/v2i-hub/RSUHealthMonitorPlugin/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
{
"key":"RSUMIBVersion",
"default":"RSU4.1",
"description":"THe version of RSU MIB (Management Information Base). E.G. RSU4.1 or RSU1218"
"description":"The version of RSU MIB (Management Information Base). E.G. RSU4.1 or RSU1218. Currently only support RSU4.1"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ namespace RSUHealthMonitor
else
{
_rsuMibVersion = UNKOWN_MIB_V;
PLOG(logERROR) << "Uknown RSU MIB version: " <<_rsuMIBVersionStr;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace RSUHealthMonitor
RSUHealthMonitorWorker::RSUHealthMonitorWorker()
{
_RSUSTATUSConfigMapPtr = make_shared<map<RSUMibVersion, RSUStatusConfigTable>>();
// Current only support RSU MIB version 4.1. Other future supported versions will be inserted here.
// Currently only support RSU MIB version 4.1. Other future supported versions will be inserted here.
RSUStatusConfigTable rsuRstatusTable = constructRsuStatusConfigTable(RSUMIB_V_4_1);
_RSUSTATUSConfigMapPtr->insert({RSUMIB_V_4_1, rsuRstatusTable});
}
Expand Down

0 comments on commit aabd56a

Please sign in to comment.