Skip to content
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

welkin-issue-80 #81

Merged
merged 1 commit into from
Apr 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions aci-preupgrade-validation-script.py
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,7 @@ def hw_program_fail_check(index, total_checks, cversion, **kwargs):
unformatted_data = []
recommended_action = {
'actrlRule': 'Check that "operSt" are set to "enabled". F3545 does not exist on this version.',
'actrlPrefix': 'Check that "operSt" are set to "enabled". F3544 does not exist on this version.',
'actrlPfxEntry': 'Check that "operSt" are set to "enabled". F3544 does not exist on this version.',
'F3544': 'Ensure that LPM and host routes usage are below the capacity and resolve the fault',
'F3545': 'Ensure that Policy CAM usage is below the capacity and resolve the fault'
}
Expand All @@ -1306,7 +1306,7 @@ def hw_program_fail_check(index, total_checks, cversion, **kwargs):
# Faults F3544 and F3545 don't exist until 4.1(1a)+
if cversion.older_than("4.1(1a)"):
headers = ["Object Class", "Recommended Action"]
classes = ["actrlRule", "actrlPrefix"]
classes = ["actrlRule", "actrlPfxEntry"]
result = MANUAL

for entry in classes:
Expand Down