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
git clone [email protected]:oracle/helidon.git cd helidon git checkout tags/2.5.5 cd examples/microprofile/hello-world-explicit
change src/main/java/io/helidon/microprofile/example/helloworld/explicit/HelloWorldResource.java
diff --git a/examples/microprofile/hello-world-explicit/src/main/java/io/helidon/microprofile/example index 7415426..8430bec 100644 --- a/examples/microprofile/hello-world-explicit/src/main/java/io/helidon/microprofile/example/hellow +++ b/examples/microprofile/hello-world-explicit/src/main/java/io/helidon/microprofile/example/hellow @@ -74,7 +74,11 @@ public class HelloWorldResource { @GET @Produces(MediaType.TEXT_PLAIN) public String message() { - return "Hello World from application " + applicationName; + StringBuilder str = new StringBuilder(); + for(int i=0; i<6000000; i++) { + str.append("a"); + } + return str.toString(); }
curl localhost:5000//helloworld hangs
Note: this is working in 2.6.3. we want to check if there are any workarounds for 2.5.5 and why it is happening.
The text was updated successfully, but these errors were encountered:
Please see #5766. It includes a work-around.
Sorry, something went wrong.
No branches or pull requests
Environment Details
Problem Description
Steps to reproduce
change src/main/java/io/helidon/microprofile/example/helloworld/explicit/HelloWorldResource.java
Note: this is working in 2.6.3. we want to check if there are any workarounds for 2.5.5 and why it is happening.
The text was updated successfully, but these errors were encountered: