From 44e4c7f7af32b3a664ae0eb27f17f6d28ef6486e Mon Sep 17 00:00:00 2001 From: rakeshkashyap123 Date: Mon, 8 May 2023 13:47:33 -0700 Subject: [PATCH] version bump (#1162) * version bump * add logs --------- Co-authored-by: Rakesh Kashyap Hanasoge Padmanabha --- .../offline/transformation/AnchorToDataSourceMapper.scala | 4 +++- gradle.properties | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/feathr-impl/src/main/scala/com/linkedin/feathr/offline/transformation/AnchorToDataSourceMapper.scala b/feathr-impl/src/main/scala/com/linkedin/feathr/offline/transformation/AnchorToDataSourceMapper.scala index bae2c64ef..cd18e512a 100644 --- a/feathr-impl/src/main/scala/com/linkedin/feathr/offline/transformation/AnchorToDataSourceMapper.scala +++ b/feathr-impl/src/main/scala/com/linkedin/feathr/offline/transformation/AnchorToDataSourceMapper.scala @@ -147,9 +147,11 @@ private[offline] class AnchorToDataSourceMapper(dataPathHandlers: List[DataPathH } catch {// todo - Add this functionality to only specific exception types and not for all error types. case e: Exception => if (shouldSkipFeature) { - logger.warn(s"shouldSkipFeature is " + shouldSkipFeature) + logger.warn(s"shouldSkipFeature is " + shouldSkipFeature + ". The original exception msg is " + e.getMessage) ss.emptyDataFrame } else if (shouldAddDefaultColForMissingData) { + logger.warn(s"shouldAddDefaultColForMissingData is " + shouldAddDefaultColForMissingData + ". The original exception msg is " + + e.getMessage) ss.emptyDataFrame } else throw e } diff --git a/gradle.properties b/gradle.properties index c211fcf9e..85f7d8e4e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ -version=1.0.3-rc2 +version=1.0.3-rc3 SONATYPE_AUTOMATIC_RELEASE=true POM_ARTIFACT_ID=feathr_2.12