kytos / mef_eline

Kytos NApp to create and manage point-to-point L2 circuits
https://napps.kytos.io/kytos/mef_eline
MIT License
3 stars 14 forks source link

Intra-domain EVC not active when dynamic_backup_path set to false #215

Closed dgarc330 closed 3 years ago

dgarc330 commented 3 years ago

When we run the same exact commands to create an EVC with the dynamic_backup_path attribute set to true, the EVC is active. Otherwise, the 'active' attribute remains false. We are using the latest Kytos version (b2), and running within a python environment.

Commands used: $ curl --header "Content-Type: application/json" --request POST --data '{"name": "evc_411", "uni_a": {"interface_id": "00:00:00:00:00:00:00:01:16", "tag": {"tag_type": 1, "value": 411}}, "uni_z": {"interface_id": "00:00:00:00:00:00:00:01:15", "tag": {"tag_type": 1, "value": 411}}, "dynamic_backup_path": true, "enabled": true}' http://localhost:8181/api/kytos/mef_eline/v2/evc/

$ curl --header "Content-Type: application/json" --request POST --data '{"name": "evc_412", "uni_a": {"interface_id": "00:00:00:00:00:00:00:01:16", "tag": {"tag_type": 1, "value": 412}}, "uni_z": {"interface_id": "00:00:00:00:00:00:00:01:15", "tag": {"tag_type": 1, "value": 412}}, "dynamic_backup_path": false, "enabled": true}' http://localhost:8181/api/kytos/mef_eline/v2/evc/

dgarc330 commented 3 years ago

Hey there guys, I was looking over our open issues and I saw that Antonio created a pull request to fix this one, and Rogerio approved it. Does that mean that the changes were merged already? If so, can I get a status update to see if we can consider this issue resolved?