From 0deb4fcaabfc88b613fa1308271be2f2a86ab2d0 Mon Sep 17 00:00:00 2001 From: "@abbedsedk" Date: Fri, 22 Oct 2021 13:09:57 +0200 Subject: [PATCH] odl-pcep-ietf-stateful07 updated to odl-pcep-ietf-stateful as of Opendaylight Aluminium 13.0 new module replacing it module https://mvnrepository.com/artifact/org.opendaylight.bgpcep/pcep-ietf-stateful07 replaced by https://mvnrepository.com/artifact/org.opendaylight.bgpcep/pcep-ietf-stateful https://git.opendaylight.org/gerrit/c/bgpcep/+/91372 Pcep Stateful & Initiated renaming This is the first part of compliancy to RFC8231 (Stateful) & RFC8281 (Initiated). It removes mention to old draft in various package name, class name, yange model name ... as follow: - Rename Stateful07 -> Stateful - Rename Initiated00 -> Initiated - CrabbeInitiated -> Initiated JIRA: BGPCEP-882 --- pathman_sr.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pathman_sr.py b/pathman_sr.py index 9d43bbb..75afe45 100644 --- a/pathman_sr.py +++ b/pathman_sr.py @@ -791,10 +791,10 @@ def list_pcep_lsp(node_list, debug): name = path['name'] ip_hoplist = [] sid_list = [] - if 'odl-pcep-ietf-stateful07:lsp' in path['path'][0].keys(): - if 'operational' in path['path'][0]['odl-pcep-ietf-stateful07:lsp'].keys(): - oper = path['path'][0]['odl-pcep-ietf-stateful07:lsp']['operational'] - # if path['path'][0]['odl-pcep-ietf-stateful07:lsp']['operational'] == 'up': + if 'odl-pcep-ietf-stateful:lsp' in path['path'][0].keys(): + if 'operational' in path['path'][0]['odl-pcep-ietf-stateful:lsp'].keys(): + oper = path['path'][0]['odl-pcep-ietf-stateful:lsp']['operational'] + # if path['path'][0]['odl-pcep-ietf-stateful:lsp']['operational'] == 'up': if oper == 'up' or oper == 'active': if 'rro' in path['path'][0].keys(): route_obj = path['path'][0]['rro']['subobject'] @@ -982,7 +982,7 @@ def get_pcep_type(debug): for node in my_pcep['topology'][0]['node']: loopback = node['network-topology-pcep:path-computation-client']['ip-address'] pcc = node['node-id'] - if 'odl-pcep-ietf-stateful07:stateful' in node['network-topology-pcep:path-computation-client']['stateful-tlv'].keys(): + if 'odl-pcep-ietf-stateful:stateful' in node['network-topology-pcep:path-computation-client']['stateful-tlv'].keys(): pcep_type = '07' else: pcep_type = '02'