Skip to content
Snippets Groups Projects
Commit ceb62819 authored by maji2014's avatar maji2014 Committed by Reynold Xin
Browse files

[SPARK-4619][Storage]delete redundant time suffix

Time suffix exists in Utils.getUsedTimeMs(startTime), no need to append again, delete that

Author: maji2014 <maji3@asiainfo.com>

Closes #3475 from maji2014/SPARK-4619 and squashes the following commits:

df0da4e [maji2014] delete redundant time suffix
parent 120a3502
No related branches found
No related tags found
No related merge requests found
...@@ -265,7 +265,7 @@ final class ShuffleBlockFetcherIterator( ...@@ -265,7 +265,7 @@ final class ShuffleBlockFetcherIterator(
// Get Local Blocks // Get Local Blocks
fetchLocalBlocks() fetchLocalBlocks()
logDebug("Got local blocks in " + Utils.getUsedTimeMs(startTime) + " ms") logDebug("Got local blocks in " + Utils.getUsedTimeMs(startTime))
} }
override def hasNext: Boolean = numBlocksProcessed < numBlocksToFetch override def hasNext: Boolean = numBlocksProcessed < numBlocksToFetch
......
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