-
-
Notifications
You must be signed in to change notification settings - Fork 735
For open source Parse with /parse mounts, this fix helps avoid the problem of remembering to add the trailing slash. #436
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
By analyzing the blame information on this pull request, we identified @richardjrossiii, @grantland and @wangmengyan95 to be potential reviewers. |
@rogerhu updated the pull request. |
@richardjrossiii Could you take a look at this? |
@@ -30,14 +30,14 @@ public void testBuilder() { | |||
Parse.Configuration.Builder builder = new Parse.Configuration.Builder(null); | |||
builder.applicationId("foo"); | |||
builder.clientKey("bar"); | |||
builder.server("some.server"); | |||
builder.server("http://myserver.com/parse"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we perhaps duplicate this test case, instead of just modifying it in-place? One test for each branch?
I'd prefer we use |
@rogerhu updated the pull request. |
…oblem of remembering to add the trailing slash.
@rogerhu updated the pull request. |
Fixed...can you take a look again? I took out the server() on the original test and broke them out to separate tests to check both cases. |
Nice! Merging now. |
Thanks! |
Example traceback for GitHub's search.
|
Could you explain what this has to do with this PR? |
You run into this error when you're not using the master (that includes this fix) and you cannot find it easily. |
Could you provide a code sample? How is this PR related to your issue? On Tue, Apr 26, 2016 at 10:38 AM, Martin Zimmermann <
|
If you use the latest release of Parse SDK for Android with a custom Parse server hosted on e.g. foo.example.org:4043/foobar and forget to add a slash, you get this nonsense error message. The PR resolves this. If it still doesn't make sense, remove my comments. |
Yes we should release a new version right? :) On Tue, Apr 26, 2016 at 11:04 AM, Martin Zimmermann <
|
Yup, might save a few hours questionig the self-hosted server ;) |
Can someone make this happen? |
No description provided.