Skip to content

Commit

Permalink
Fix review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Vikram Agrawal committed Jun 25, 2019
1 parent 3f5f6b2 commit f0f2f8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion core/src/main/java/org/apache/spark/io/FileUtility.java
Expand Up @@ -92,7 +92,8 @@ public static void createTarFile(String source, String destFileName) throws Exce
tarOs.finish();
tarOs.close();
} catch (IOException e) {
e.printStackTrace();
throw new IllegalStateException(String.format(
"createTarFile failed with exception %s.", e.getMessage()));
}
}
}
Expand Down
Expand Up @@ -89,7 +89,6 @@ object WALUtils {
}
}
val storeFiles = versionToFiles.values.toSeq.sortBy(_.version)
// logDebug(s"Current set of files for $this: ${storeFiles.mkString(", ")}")
storeFiles
}

Expand Down

0 comments on commit f0f2f8d

Please sign in to comment.