From 902fe25132d9651cc1a6af9229678572b68c7c2c Mon Sep 17 00:00:00 2001 From: "Thomas Nelson Jr (arthurdent3) tn1381@att.com" Date: Thu, 4 Oct 2018 18:04:40 -0400 Subject: Added fix for OOF issue. Updated Pom files for Library version change. Change-Id: Ibf10eba8923353010b66ac8496fb53815f3affc4 Issue-ID: MUSIC-143 Signed-off-by: Thomas Nelson Jr (arthurdent3) tn1381@att.com --- jar/pom.xml | 5 ----- pom.xml | 4 ++-- src/main/java/org/onap/music/datastore/MusicDataStore.java | 2 +- version.properties | 2 +- 4 files changed, 4 insertions(+), 9 deletions(-) diff --git a/jar/pom.xml b/jar/pom.xml index b068aee6..e5b9d802 100644 --- a/jar/pom.xml +++ b/jar/pom.xml @@ -185,7 +185,6 @@ provided - ch.qos.logback @@ -215,7 +214,6 @@ 1.0.1-oss - com.datastax.cassandra @@ -223,7 +221,6 @@ ${cassandra.version} - org.apache.zookeeper @@ -237,7 +234,6 @@ - com.sun.jersey @@ -331,7 +327,6 @@ com.google.guava guava - org.mindrot diff --git a/pom.xml b/pom.xml index d370856d..3da9223d 100755 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ org.onap.music MUSIC war - 3.0.19-SNAPSHOT + 3.0.21-SNAPSHOT This is the MUSIC REST interface, packaged as a war file. @@ -312,7 +312,7 @@ io.netty netty-handler - 4.0.56.Final + 4.1.30.Final com.fasterxml.jackson.core diff --git a/src/main/java/org/onap/music/datastore/MusicDataStore.java b/src/main/java/org/onap/music/datastore/MusicDataStore.java index 21b0053f..0154ad28 100644 --- a/src/main/java/org/onap/music/datastore/MusicDataStore.java +++ b/src/main/java/org/onap/music/datastore/MusicDataStore.java @@ -315,7 +315,7 @@ public class MusicDataStore { DataType colType = colInfo.getType(colName); Object columnValue = getColValue(row, colName, colType); Object conditionValue = MusicUtil.convertToActualDataType(colType, entry.getValue()); - if (columnValue.equals(conditionValue)) + if (!columnValue.equals(conditionValue)) return false; } return true; diff --git a/version.properties b/version.properties index 0b918c88..b5dfb335 100755 --- a/version.properties +++ b/version.properties @@ -4,7 +4,7 @@ major=3 minor=0 -patch=19 +patch=21 base_version=${major}.${minor}.${patch} -- cgit 1.2.3-korg