From 90e8c6d51610afa6afd7eb42920c42a88d27f22b Mon Sep 17 00:00:00 2001 From: Rakesh Kashyap Hanasoge Padmanabha Date: Mon, 13 Feb 2023 23:22:24 -0800 Subject: [PATCH] Fix bug in path analyzer --- .../offline/source/pathutil/TimeBasedHdfsPathAnalyzer.scala | 2 +- gradle.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/feathr-impl/src/main/scala/com/linkedin/feathr/offline/source/pathutil/TimeBasedHdfsPathAnalyzer.scala b/feathr-impl/src/main/scala/com/linkedin/feathr/offline/source/pathutil/TimeBasedHdfsPathAnalyzer.scala index 90ceecad4..4dbb7df4e 100644 --- a/feathr-impl/src/main/scala/com/linkedin/feathr/offline/source/pathutil/TimeBasedHdfsPathAnalyzer.scala +++ b/feathr-impl/src/main/scala/com/linkedin/feathr/offline/source/pathutil/TimeBasedHdfsPathAnalyzer.scala @@ -79,7 +79,7 @@ private[offline] class TimeBasedHdfsPathAnalyzer(pathChecker: PathChecker, dataL } else if (pathChecker.exists(basePath + hourlyFolder)) { PathInfo(basePath + hourlyFolder, dateTimeResolution, timePartitionPattern) } else { - PathInfo(filePath, dateTimeResolution, timePartitionPattern) + PathInfo(basePath, dateTimeResolution, timePartitionPattern) } } } diff --git a/gradle.properties b/gradle.properties index acfe7c162..08a2cf61a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ -version=1.0.0-rc1 +version=1.0.0-rc2 SONATYPE_AUTOMATIC_RELEASE=true POM_ARTIFACT_ID=feathr_2.12