cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
349
Views
1
Helpful
1
Replies

affected-services vs affected-services-with-changes

tsiemers1
Spotlight
Spotlight

Doing NED migrations and saw a difference in affected services that I can't find any documentation about. What is the difference between affected-services and affected-services-with-changes when running the migration command?

devices device testDeviceName migrate new-ned-id cisco-ios-cli-6.93 verbose
affected-services-with-changes [ /multi-l2vpn[circuit_id='900613'] /multi-l2vpn[circuit_id='979700214'] /multi-l2vpn[circuit_id='979700216'] ]
affected-services [ /multi-l2vpn[circuit_id='900614'] /multi-l2vpn[circuit_id='979700215'] /multi-l2vpn[circuit_id='979700217']

Should I re-deploy reconcile only the 'affected-services-with-changes' or all of them?

NSO 5.5.4

1 Accepted Solution

Accepted Solutions

Nabsch
Spotlight
Spotlight

Hello,

You can check the diff in the Yang file

 

    leaf-list affected-services-with-changes {
      description
        "The service instances/points that are affected by the data
         model changes on the migrated device.";
      type string;
    }
    leaf-list affected-services {
      description
        "The service instances/points that touches the migrated device.";
      type string;
    }
  }

 

 

 

In the new release the leaf affected-services-with-changes was renamed to affected-services, The migrate will give you only the services impacted by the migration.

View solution in original post

1 Reply 1

Nabsch
Spotlight
Spotlight

Hello,

You can check the diff in the Yang file

 

    leaf-list affected-services-with-changes {
      description
        "The service instances/points that are affected by the data
         model changes on the migrated device.";
      type string;
    }
    leaf-list affected-services {
      description
        "The service instances/points that touches the migrated device.";
      type string;
    }
  }

 

 

 

In the new release the leaf affected-services-with-changes was renamed to affected-services, The migrate will give you only the services impacted by the migration.