[SPARK-20260][MLLib] String interpolation required for error message#17572
Closed
vijaykramesh wants to merge 3 commits intoapache:masterfrom
Closed
[SPARK-20260][MLLib] String interpolation required for error message#17572vijaykramesh wants to merge 3 commits intoapache:masterfrom
vijaykramesh wants to merge 3 commits intoapache:masterfrom
Conversation
Member
|
Yes, that's fine though I typically encourage people to hunt for other occurrences of the same issue. I used a regex like |
Author
|
@srowen fixed it in some more places. it seems like everywhere else that regexp matches we actually want the $ outputted. do you want me to squash commits as well? |
srowen
approved these changes
Apr 9, 2017
|
Test build #3649 has started for PR 17572 at commit |
|
Test build #3653 has finished for PR 17572 at commit
|
asfgit
pushed a commit
that referenced
this pull request
Apr 9, 2017
## What changes were proposed in this pull request? This error message doesn't get properly formatted because of a missing `s`. Currently the error looks like: ``` Caused by: java.lang.IllegalArgumentException: requirement failed: indices should be one-based and in ascending order; found current=$current, previous=$previous; line="$line" ``` (note the literal `$current` instead of the interpolated value) Please review http://spark.apache.org/contributing.html before opening a pull request. Author: Vijay Ramesh <vramesh@demandbase.com> Closes #17572 from vijaykramesh/master. (cherry picked from commit 261eaf5) Signed-off-by: Sean Owen <sowen@cloudera.com>
Member
|
Merged to master/2.1 |
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 free
to 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.
What changes were proposed in this pull request?
This error message doesn't get properly formatted because of a missing
s. Currently the error looks like:(note the literal
$currentinstead of the interpolated value)Please review http://spark.apache.org/contributing.html before opening a pull request.