Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Isan-Rivkin committed Jun 24, 2024
1 parent a7f525a commit 90354c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clients/spark/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
lazy val projectVersion = "0.14.1-RC1"
lazy val projectVersion = "0.14.1-RC2"
version := projectVersion
lazy val hadoopVersion = "3.2.1"
ThisBuild / isSnapshot := false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,11 @@ class LakeFSAllRangesInputFormat extends LakeFSBaseInputFormat {
break
}
// check if the file name contains exported, actions or ranges in it and exclude it
if (file.getPath.getName.contains("exported") || file.getPath.getName.contains("actions") || file.getPath.getName.contains("ranges")) {
if (
file.getPath.getName.contains("exported") || file.getPath.getName.contains(
"actions"
) || file.getPath.getName.contains("ranges")
) {
logger.debug(s"Skipping file blacklist ${file.getPath}")
logger.warn(s"Skipping file blacklist ${file.getPath}")
break
Expand Down

0 comments on commit 90354c9

Please sign in to comment.