From cccfb7abe5c88e487252a42f7255e7980e2fad17 Mon Sep 17 00:00:00 2001 From: "guillaume.lambert" Date: Wed, 21 Sep 2022 20:26:22 +0200 Subject: [PATCH] Fix PCE PathComputationServiceImpl useless NS JIRA: TRNSPRTPCE-683 Signed-off-by: guillaume.lambert Change-Id: Ib9ee162a0e96ea9d9d90f93eae5273a78c691781 --- .../transportpce/pce/service/PathComputationServiceImpl.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pce/src/main/java/org/opendaylight/transportpce/pce/service/PathComputationServiceImpl.java b/pce/src/main/java/org/opendaylight/transportpce/pce/service/PathComputationServiceImpl.java index 3c5213363..32942c2bd 100644 --- a/pce/src/main/java/org/opendaylight/transportpce/pce/service/PathComputationServiceImpl.java +++ b/pce/src/main/java/org/opendaylight/transportpce/pce/service/PathComputationServiceImpl.java @@ -229,8 +229,7 @@ public class PathComputationServiceImpl implements PathComputationService { } // Path calculator returned Success PathDescription pathDescription = - new org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.pce.rev220808 - .service.path.rpc.result.PathDescriptionBuilder() + new PathDescriptionBuilder() .setAToZDirection(path.getAToZDirection()) .setZToADirection(path.getZToADirection()) .build(); -- 2.36.6