You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you create an EVC with a dynamic path and all possible paths are with the links disabled, then the EVC will never be activated even if you enable all the links later.
Steps to reproduce:
Create a topology and start Kytos (without enable-all option):
for s in $(curl -s http://127.0.0.1:8181/api/kytos/topology/v3/switches | jq -r '.switches[].id'); do curl -X POST -H 'Content-Type: application/json' http://127.0.0.1:8181/api/kytos/topology/v3/switches/$s/enable; curl -X POST -H 'Content-Type: application/json' http://127.0.0.1:8181/api/kytos/topology/v3/interfaces/switch/$s/enable; done
for l in $(curl -s http://127.0.0.1:8181/api/kytos/topology/v3/links | jq -r '.links[].id'); do curl -X POST -H 'Content-Type: application/json' http://127.0.0.1:8181/api/kytos/topology/v3/links/$l/enable; done
This issue has been fixed by the contribution done on PR #157
It has been tested following the steps sequences provided above, and it has not been detected errors.
Hi,
If you create an EVC with a dynamic path and all possible paths are with the links disabled, then the EVC will never be activated even if you enable all the links later.
Steps to reproduce:
Expected result:
Actual result:
Workaround: disable and enable the EVC:
The text was updated successfully, but these errors were encountered: