Details
-
Bug
-
Status: Resolved
-
Resolution: Done
-
None
-
None
-
None
-
Operating System: All
Platform: All
-
2408
Description
I am using a build you provided on 14th Friday Nov for clustering testing. distribution-karaf-0.2.1-Helium-SR1 I’ve deployed a 3 node cluster with
- system:property shard.persistent ${PERSISTENCE}
PERSISTENT="false"
- module-shards.conf, Possible values: "all", every other value will result in single replica
REPLICA="single"
I am creating PCEP sessions using the pcep-pcc-mock tool described here.
https://wiki.opendaylight.org/view/BGP_LS_PCEP:Testing_components#pcep-pcc-mock
java -jar pcep-pcc-mock-0.3.2-SNAPSHOT-executable.jar --log-level DE --local-address 10.25.2.12 --remote-address 10.25.2.9
This creates 1 pcep session.
When I access the REST API at
10.194.126.205:8181/restconf/operational/network-topology:network-topology/topology/pcep-topology-1
I see
{
"topology": [
{
"topology-id": "pcep-topology-1",
"topology-types": {
"network-topology-pcep:topology-pcep": {}
},
"node": [
{
"node-id": "pcc://10.25.2.12",
"network-topology-pcep:path-computation-client": {
"reported-lsp": [
{
"name": "pcc_10.25.2.12_tunnel_1",
"path": [
{
"lsp-id": 1,
"odl-pcep-ietf-stateful07:lsp": {
"plsp-id": 1,
"odl-pcep-ietf-initiated00:create": false,
"remove": false,
"administrative": true,
"delegate": true,
"sync": true,
"operational": "up",
"processing-rule": false,
"tlvs": {
"lsp-identifiers": {
"ipv4":
,
"lsp-id": 1,
"tunnel-id": 1
},
"symbolic-path-name":
},
"ignore": false
},
"ero":
}
]
}
],
"ip-address": "10.25.2.12"
}
}
]
}
]
}
I kill the pcep-pcc-mock tool , “ctlr +C” and restart it, I see no changes after 600 seconds.
{
"topology": [
{
"topology-id": "pcep-topology-1",
"topology-types": {
"network-topology-pcep:topology-pcep": {}
},
"node": [
{
"node-id": "pcc://10.25.2.12",
"network-topology-pcep:path-computation-client": {
"reported-lsp": [
{
"name": "pcc_10.25.2.12_tunnel_1",
"path": [
{
"lsp-id": 1,
"odl-pcep-ietf-stateful07:lsp": {
"plsp-id": 1,
"odl-pcep-ietf-initiated00:create": false,
"remove": false,
"administrative": true,
"delegate": true,
"sync": true,
"operational": "up",
"processing-rule": false,
"tlvs": {
"lsp-identifiers": {
"ipv4":
,
"lsp-id": 1,
"tunnel-id": 1
},
"symbolic-path-name":
},
"ignore": false
},
"ero":
}
]
}
],
"ip-address": "10.25.2.12"
}
}
]
}
]
}