Skip to content

Commit

Permalink
add also intf with lower and no spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
juztas authored Aug 15, 2024
1 parent 0dec01a commit 108eb4e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions autogole-api/src/python/RTMonLibs/Template.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,7 @@ def findIntf(interfaces):
# https://github.com/esnet/sense-rtmon/issues/128
intfs.append(intfname.lower())
intfs.append(intfname.replace(" ", ""))
intfs.append(intfname.lower().replace(" ", ""))
intfline = "|".join(intfs)
return intfline
out = []
Expand Down

0 comments on commit 108eb4e

Please sign in to comment.