Skip to content
Snippets Groups Projects
Commit 114c5a98 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Pre-release CI/CD pipeline fixes

parent a64a5a01
No related branches found
No related tags found
2 merge requests!142Release TeraFlowSDN 2.1,!137Pre-release CI/CD fixes - Service - PathComp
...@@ -34,7 +34,10 @@ RSRC_SUBIF = RSRC_EP + '/subinterfaces/subinterface[{:d}]' ...@@ -34,7 +34,10 @@ RSRC_SUBIF = RSRC_EP + '/subinterfaces/subinterface[{:d}]'
RSRC_ADDRIPV4 = RSRC_SUBIF + '/ipv4/address[{:s}]' RSRC_ADDRIPV4 = RSRC_SUBIF + '/ipv4/address[{:s}]'
DEVICE_EMU_ENDPOINTS_COOKED = [] DEVICE_EMU_ENDPOINTS_COOKED = []
for endpoint_uuid,endpoint_type,endpoint_sample_types in DEVICE_EMU_EP_DESCS: for endpoint_data in DEVICE_EMU_EP_DESCS:
endpoint_uuid = endpoint_data['uuid']
endpoint_type = endpoint_data['type']
endpoint_sample_types = endpoint_data['sample_types']
endpoint_resource_key = RSRC_EP.format(str(endpoint_uuid)) endpoint_resource_key = RSRC_EP.format(str(endpoint_uuid))
sample_types = {} sample_types = {}
for endpoint_sample_type in endpoint_sample_types: for endpoint_sample_type in endpoint_sample_types:
......
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