Closed bshephar closed 5 months ago
[APPROVALNOTIFIER] This PR is APPROVED
This pull-request has been approved by: bshephar
The full list of commands accepted by this bot can be found here.
The pull request process is described here
/lgtm
/lgtm
since anything can be iterable in python... Fun it didn't break before though.
The current implementation just checks that the port provided by the user is iterable. This results in a value such as:
dport: 1234-5678
Being iterated over and trying to apply "1,2,3,4,-,5,6,7,8" which is obviously not desireable. This change adds more strict checking to the value to ensure we only try to iterate over lists.
Resolves: rhbz#2276865