Skip to content
Snippets Groups Projects
Commit 713d0da7 authored by Erik Reid's avatar Erik Reid
Browse files

treat service category param case-insensitive

parent a100a3d3
No related branches found
No related tags found
No related merge requests found
......@@ -91,7 +91,7 @@ def service_category_interfaces(category):
result = []
r = common.get_current_redis()
for k in r.scan_iter(f'interface-services:{category}:*'):
for k in r.scan_iter(f'interface-services:{category.lower()}:*'):
ifc = r.get(k.decode('utf-8'))
result.append(json.loads(ifc.decode('utf-8')))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment