Uh oh!
There was an error while loading. Please reload this page.
SPARK-1523: improve the readability of code in AkkaUtil - #434
Closed
CodingCat wants to merge 1 commit into
Closed
Conversation
AmplabJenkins
commented
Apr 17, 2014
Merged build triggered. |
AmplabJenkins
commented
Apr 17, 2014
Merged build started. |
AmplabJenkins
commented
Apr 17, 2014
Merged build finished. All automated tests passed. |
AmplabJenkins
commented
Apr 17, 2014
All automated tests passed. |
rxin
commented
Apr 18, 2014
Contributor
I merged this. Thanks. |
asfgit pushed a commit
that referenced
this pull request
Apr 18, 2014
Actually it is separated from #85 as suggested by @rxin compare https://github.com/apache/spark/blob/master/core/src/main/scala/org/apache/spark/util/AkkaUtils.scala#L122 and https://github.com/apache/spark/blob/master/core/src/main/scala/org/apache/spark/util/AkkaUtils.scala#L117 the first one use get and then toLong, the second one getLong....better to make them consistent very very small fix........ Author: CodingCat <zhunansjtu@gmail.com> Closes#434 from CodingCat/SPARK-1523 and squashes the following commits: 0e86f3f [CodingCat] improve the readability of code in AkkaUtil (cherry picked from commit 3c7a9ba) Signed-off-by: Reynold Xin <rxin@apache.org>
pwendell added a commit
to pwendell/spark
that referenced
this pull request
May 12, 2014
Fixed SVDPlusPlusSuite in Maven build. This should go into 0.9.0 also.
pdeyhim pushed a commit
to pdeyhim/spark-1
that referenced
this pull request
Jun 25, 2014
Actually it is separated from apache#85 as suggested by @rxin compare https://github.com/apache/spark/blob/master/core/src/main/scala/org/apache/spark/util/AkkaUtils.scala#L122 and https://github.com/apache/spark/blob/master/core/src/main/scala/org/apache/spark/util/AkkaUtils.scala#L117 the first one use get and then toLong, the second one getLong....better to make them consistent very very small fix........ Author: CodingCat <zhunansjtu@gmail.com> Closesapache#434 from CodingCat/SPARK-1523 and squashes the following commits: 0e86f3f [CodingCat] improve the readability of code in AkkaUtil
andrewor14 pushed a commit
to andrewor14/spark
that referenced
this pull request
Jan 8, 2015
Fixed SVDPlusPlusSuite in Maven build. This should go into 0.9.0 also. (cherry picked from commit 087487e) Signed-off-by: Patrick Wendell <pwendell@gmail.com>
mnazbro pushed a commit
to mnazbro/spark
that referenced
this pull request
Nov 14, 2018
Fix gradle publishing to correct bintray bucket
bzhaoopenstack pushed a commit
to bzhaoopenstack/spark
that referenced
this pull request
Sep 11, 2019
Update the expired otc account password
arjunshroff pushed a commit
to arjunshroff/spark
that referenced
this pull request
Nov 24, 2020
…ller's scripts to the configure.sh (apache#434)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Actually it is separated from #85 as suggested by @rxin
compare
https://github.com/apache/spark/blob/master/core/src/main/scala/org/apache/spark/util/AkkaUtils.scala#L122
and
https://github.com/apache/spark/blob/master/core/src/main/scala/org/apache/spark/util/AkkaUtils.scala#L117
the first one use get and then toLong, the second one getLong....better to make them consistent
very very small fix........