Skip to content

Commit

Permalink
Fix port max
Browse files Browse the repository at this point in the history
  • Loading branch information
sonicaj committed Aug 8, 2024
1 parent bcce5c5 commit 1afac98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catalog_reader/questions.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def normalize_question(question: dict, version_data: dict, context: dict) -> Non
elif ref == 'definitions/port':
data.update({
'min': 1,
'max': 65534,
'max': 65535,
})
elif ref == 'normalize/acl':
data['attrs'] = ACL_QUESTION
Expand Down

0 comments on commit 1afac98

Please sign in to comment.