We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Exception is thrown when making a call with XrpcClient
Paste in the code below and run it
Not throw exception
Throws exception
public static Handler handler(HttpMethod method) { return frontRequest -> { XrpcClient client = new XrpcClient()
try { client.newCall(url.toString()).get(backRequest).execute(); } catch (URISyntaxException e) { return Recipes.newResponse(HttpResponseStatus.INTERNAL_SERVER_ERROR); } }
}
0.4.5
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
Exception is thrown when making a call with XrpcClient
Steps to reproduce
Paste in the code below and run it
Expected behavior
Not throw exception
Actual behavior
Throws exception
Minimal yet complete reproducer code (or URL to code)
public static Handler handler(HttpMethod method) {
return frontRequest -> {
XrpcClient client = new XrpcClient()
}
xrpc version
0.4.5
The text was updated successfully, but these errors were encountered: