We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f60c4be commit 47f9636Copy full SHA for 47f9636
core/src/main/scala/org/apache/spark/storage/BlockManager.scala
@@ -878,6 +878,8 @@ private[spark] class BlockManager(
878
}
879
res
880
} finally {
881
+ // This cleanup is performed in a finally block rather than a `catch` to avoid having to
882
+ // catch and properly re-throw InterruptedException.
883
if (exceptionWasThrown) {
884
logWarning(s"Putting block $blockId failed due to an exception")
885
// If an exception was thrown then it's possible that the code in `putBody` has already
0 commit comments