Skip to content
Snippets Groups Projects
Commit a332ead8 authored by Robert Latta's avatar Robert Latta
Browse files

corrected circuit_type assignment

parent aa5e0a6d
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,10 @@ def get_port_id_services(ds: IMS):
f'product.name == "{st}"',
circuit_nav_props,
step_count=2000):
c['circuit_type'] = 'service'
if c['product']['name'] in IMS_SERVICE_NAMES:
c['circuit_type'] = 'service'
else:
c['circuit_type'] = 'circuit'
yield c
for spd in speeds:
......
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