Skip to content
Snippets Groups Projects
Commit c35d530b authored by Matei Zaharia's avatar Matei Zaharia
Browse files

Fix compile error

parent 7c10b3e3
No related branches found
No related tags found
No related merge requests found
...@@ -121,7 +121,7 @@ class BlockManagerMasterActor(val isLocal: Boolean) extends Actor with Logging { ...@@ -121,7 +121,7 @@ class BlockManagerMasterActor(val isLocal: Boolean) extends Actor with Logging {
val toRemove = new HashSet[BlockManagerId] val toRemove = new HashSet[BlockManagerId]
for (info <- blockManagerInfo.values) { for (info <- blockManagerInfo.values) {
if (info.lastSeenMs < minSeenTime) { if (info.lastSeenMs < minSeenTime) {
logWarning("Removing BlockManager " + info.blockManagerId + " with no recent heart beats: " logWarning("Removing BlockManager " + info.blockManagerId + " with no recent heart beats: " +
(now - info.lastSeenMs) + "ms exceeds " + slaveTimeout + "ms") (now - info.lastSeenMs) + "ms exceeds " + slaveTimeout + "ms")
toRemove += info.blockManagerId toRemove += info.blockManagerId
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment