Skip to content
Closed
Changes from 1 commit
Commits
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
Also add logics to handle other exceptions
Change-Id: Ie2bd075561e481266dc8047e2af604f4d6c83810
  • Loading branch information
jerryshao committed Mar 31, 2017
commit 63142cc82cc131b51c9d66525670caf4cba2ad39
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,10 @@ private[history] class FsHistoryProvider(conf: SparkConf, clock: Clock)
// every poll.
logDebug(s"No permission to read $entry, ignoring.")
false

case e: Exception =>
logDebug(s"Fail to get status of $entry", e)
false
}
}
.flatMap { entry => Some(entry) }
Expand Down