Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
minor change
  • Loading branch information
Vikram Agrawal committed Jul 31, 2019
commit f983d7831d07f9e0046345d28d645da69b783605
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ private[sql] class RocksDbStateStoreProvider extends StateStoreProvider with Log
}

private def getLastCommittedVersion(): Long = {
val f = new File(rocksDbPath, "commit")
val f = new File(rocksDbPath, RocksDbInstance.COMMIT_FILE_NAME)
if (f.exists()) {
try {
val fileContents = scala.io.Source.fromFile(f.getAbsolutePath).getLines.mkString
Expand Down