Fix string issue in OpenRoadmInterfaceException 47/104647/3
authorGilles Thouenon <gilles.thouenon@orange.com>
Mon, 27 Feb 2023 11:16:06 +0000 (12:16 +0100)
committerGilles Thouenon <gilles.thouenon@orange.com>
Sat, 4 Mar 2023 07:30:11 +0000 (08:30 +0100)
JIRA: TRNSPRTPCE-730
Signed-off-by: Gilles Thouenon <gilles.thouenon@orange.com>
Change-Id: Ibfc31365850560eb85a101ed6a522297a00e3b6e

common/src/main/java/org/opendaylight/transportpce/common/openroadminterfaces/OpenRoadmInterfaceException.java

index 8de67147712041fe92bd0762e7e20964028cae58..9f058a380011e1b07ae91d9c95e3ce1e6c9cfb0a 100644 (file)
@@ -24,6 +24,6 @@ public class OpenRoadmInterfaceException extends Exception {
 
     public static final String mapping_msg_err(String node, String port) {
         return String.format(
-            "Unable to get mapping from PortMapping for node % and logical connection port %s", node, port);
+            "Unable to get mapping from PortMapping for node %s and logical connection port %s", node, port);
     }
 }