Replies: 1 comment
-
Duplicate of #2962. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In aws-sdk-java/aws-java-sdk-core/src/main/java/com/amazonaws/DefaultRequest.java toString method does this. I have been trying to understand why this necessary but can't understand.
Why is there a space after the
getEndpoint()
?.Specifically
builder.append(" ")
afterbuilder.append(getEndpoint())
If my endpoint is
Endpoint: https://api.example.com
andResource Path: /users/123
, then I will getGET https://api.example.com /users/123
Am I missing something?
Beta Was this translation helpful? Give feedback.
All reactions