Repository: spark
Updated Branches:
  refs/heads/branch-1.2 092800435 -> e9244263c


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

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

Author: maji2014 <[email protected]>

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

df0da4e [maji2014] delete redundant time suffix

(cherry picked from commit ceb628197099e6c598cde1564ed9c1c3681ea955)
Signed-off-by: Reynold Xin <[email protected]>


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/e9244263
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/e9244263
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/e9244263

Branch: refs/heads/branch-1.2
Commit: e9244263c97b61560e30dcb997df4bf074299085
Parents: 0928004
Author: maji2014 <[email protected]>
Authored: Fri Nov 28 00:36:22 2014 -0800
Committer: Reynold Xin <[email protected]>
Committed: Fri Nov 28 00:36:36 2014 -0800

----------------------------------------------------------------------
 .../org/apache/spark/storage/ShuffleBlockFetcherIterator.scala     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/e9244263/core/src/main/scala/org/apache/spark/storage/ShuffleBlockFetcherIterator.scala
----------------------------------------------------------------------
diff --git 
a/core/src/main/scala/org/apache/spark/storage/ShuffleBlockFetcherIterator.scala
 
b/core/src/main/scala/org/apache/spark/storage/ShuffleBlockFetcherIterator.scala
index 6b1f57a..83170f7 100644
--- 
a/core/src/main/scala/org/apache/spark/storage/ShuffleBlockFetcherIterator.scala
+++ 
b/core/src/main/scala/org/apache/spark/storage/ShuffleBlockFetcherIterator.scala
@@ -265,7 +265,7 @@ final class ShuffleBlockFetcherIterator(
 
     // Get Local Blocks
     fetchLocalBlocks()
-    logDebug("Got local blocks in " + Utils.getUsedTimeMs(startTime) + " ms")
+    logDebug("Got local blocks in " + Utils.getUsedTimeMs(startTime))
   }
 
   override def hasNext: Boolean = numBlocksProcessed < numBlocksToFetch


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to